Skip to content

Commit

Permalink
Trigger on any non-zero exit code
Browse files Browse the repository at this point in the history
Co-authored-by: Kenneth Hoste <[email protected]>
  • Loading branch information
ocaisa and boegel authored Mar 13, 2024
1 parent 992b11d commit 8d6493e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check_missing_installations.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ exit_code=${PIPESTATUS[0]}

ok_msg="Command 'eb --missing ...' succeeded, analysing output..."
fail_msg="Command 'eb --missing ...' failed, check log '${eb_missing_out}'"
if [ "$exit_code" -eq 1 ] && [ ! -z $pr_exceptions ]; then
if [ "$exit_code" -ne 0 ] && [ ! -z $pr_exceptions ]; then
# We might have failed due to unmerged PRs. Try to make exceptions for --from-pr added in this PR
# to software-layer, and see if then it passes. If so, we can report a more specific fail_msg
# Note that if no --from-pr's were used in this PR, $pr_exceptions will be empty and we might as
Expand Down

0 comments on commit 8d6493e

Please sign in to comment.