Aesthetic changes

This commit is contained in:
Starbeamrainbowlabs 2019-08-06 00:52:49 +01:00
parent 21abed1a1f
commit f8abab6947
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 4 additions and 6 deletions

View File

@ -141,16 +141,14 @@ task_update() {
execute bzip2 -kf Packages;
task_end $?;
task_begin "Generating release file";
subtask_begin "Generating file";
execute apt-ftparchive release . >Release;
subtask_end $?;
task_end $?;
subtask_begin "Signing release file";
task_begin "Signing release file";
execute gpg --yes -abs -u "${gpg_key_id}" -o Release.gpg Release
subtask_end $?;
task_end $?;
}