From 369db121c181ef23d7433e823808df00dafcf95f Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Thu, 14 Apr 2022 09:04:33 +0200 Subject: [PATCH] CI: packages: fix if statement syntax .. again --- .github/workflows/packages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 9295e027a..1da524fde 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -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