CI: packages: fix if statement syntax .. again

This commit is contained in:
Henrik Grimler 2022-04-14 09:04:33 +02:00 committed by Henrik Grimler
parent 1c71b0db0d
commit 369db121c1
No known key found for this signature in database
GPG Key ID: B0076E490B71616B
1 changed files with 2 additions and 2 deletions

View File

@ -214,7 +214,7 @@ jobs:
# Publishing repository changes.
if [ "$uploaded_files" = "true" ]; then
if ! aptly_add_to_repo
if ! aptly_add_to_repo; then
exit 1
fi
@ -253,7 +253,7 @@ jobs:
# Publishing repository changes.
if [ "$uploaded_files" = "true" ]; then
if ! aptly_add_to_repo
if ! aptly_add_to_repo; then
exit 1
fi