From ef9abc44c37f72d6f648d40af8e8ec41623819af Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20=C5=A0tetiar?= Date: Sun, 29 Sep 2024 06:15:39 +0000 Subject: [PATCH] scripts: sha2rsync: add apk package index signature files MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Currently additional_files list is missing signature files for apk's package index, so lets add those to get them rsync-ed as well. Signed-off-by: Petr Å tetiar --- scripts/sha2rsync.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/sha2rsync.pl b/scripts/sha2rsync.pl index 6b9d2d1..e38fbf2 100755 --- a/scripts/sha2rsync.pl +++ b/scripts/sha2rsync.pl @@ -102,6 +102,8 @@ my @additional_files; for my $feed (@feeds) { push @additional_files, ( + "$feed/packages.adb.asc", + "$feed/packages.adb.sig", "$feed/Packages.asc", "$feed/Packages.sig", ); -- 2.30.2