Bugfix: Correct metafile generation

This commit is contained in:
Starbeamrainbowlabs 2019-08-06 01:20:28 +01:00
parent f8abab6947
commit 19d5fb98d0
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 2 additions and 2 deletions

View File

@ -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";