Compare commits
No commits in common. "0024777b74454c173eddfbb7848914587e5bfee7" and "92d2b03a3483e710ff47fe14aa5468e5a3107be8" have entirely different histories.
0024777b74
...
92d2b03a34
1 changed files with 1 additions and 2 deletions
|
@ -145,7 +145,7 @@ task_update() {
|
|||
|
||||
task_metafiles() {
|
||||
if [[ "$(basename "${PWD}")" != "$(basename "${dir_repo}")" ]]; then
|
||||
cd "${dir_repo}" || { echo "Error: Failed to cd into repo" >&2; exit 3; };
|
||||
cd "${dir_repo}" || { echo "Error: Failed to cd into repo"; exit 3; };
|
||||
fi
|
||||
task_begin "Building packages file";
|
||||
apt-ftparchive packages . >Packages;
|
||||
|
@ -160,7 +160,6 @@ task_metafiles() {
|
|||
execute gpg --yes -abs -u "${gpg_key_id}" -o Release.gpg Release
|
||||
task_end $?;
|
||||
|
||||
cd - || { echo "Error: Failed to cd back to previous directory" >&2; exit 4; };
|
||||
tasks_run generate-summary;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue