Bugfix: Correct metafile generation
This commit is contained in:
parent
f8abab6947
commit
19d5fb98d0
1 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue