Skip to content

Commit

Permalink
github/actions/kas-build: fix entry point success test
Browse files Browse the repository at this point in the history
  • Loading branch information
asac committed Aug 7, 2024
1 parent a1aa235 commit 790a32a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/kas-build/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 790a32a

Please sign in to comment.