From 790a32a76ee47d8191e5600368c93d683a57ceb3 Mon Sep 17 00:00:00 2001 From: Alexander Sack Date: Wed, 7 Aug 2024 08:25:26 +0000 Subject: [PATCH] github/actions/kas-build: fix entry point success test --- .github/actions/kas-build/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/kas-build/entrypoint.sh b/.github/actions/kas-build/entrypoint.sh index 444cf15..215a2cf 100755 --- a/.github/actions/kas-build/entrypoint.sh +++ b/.github/actions/kas-build/entrypoint.sh @@ -29,7 +29,7 @@ for c in ${KAS_BUILD_ACTION_CONFIG_DIR}/*.yaml; do $c \ ${KAS_BUILD_ACTION_BBARGS}; then res=$? - if $res; then + if test $res -ne 0; then err="${err:+$err $res}${err:-$res}" fi fi