CI: packages: fix if statement syntax .. again
This commit is contained in:
parent
1c71b0db0d
commit
369db121c1
4
.github/workflows/packages.yml
vendored
4
.github/workflows/packages.yml
vendored
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user