From 19d5fb98d093fba9edea94d0991336c852cf16ab Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Tue, 6 Aug 2019 01:20:28 +0100 Subject: [PATCH] Bugfix: Correct metafile generation --- aptosaurus.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aptosaurus.sh b/aptosaurus.sh index c5ba310..cc14afc 100755 --- a/aptosaurus.sh +++ b/aptosaurus.sh @@ -137,14 +137,14 @@ task_update() { task_end $?; task_begin "Building packages file"; - execute apt-ftparchive packages . >Packages; + execute bash -c 'apt-ftparchive packages . >Packages'; execute bzip2 -kf Packages; task_end $?; task_begin "Generating release file"; - execute apt-ftparchive release . >Release; + execute bash -c 'apt-ftparchive release . >Release'; task_end $?; task_begin "Signing release file";