We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 992b11d commit 8d6493eCopy full SHA for 8d6493e
check_missing_installations.sh
@@ -47,7 +47,7 @@ exit_code=${PIPESTATUS[0]}
47
48
ok_msg="Command 'eb --missing ...' succeeded, analysing output..."
49
fail_msg="Command 'eb --missing ...' failed, check log '${eb_missing_out}'"
50
-if [ "$exit_code" -eq 1 ] && [ ! -z $pr_exceptions ]; then
+if [ "$exit_code" -ne 0 ] && [ ! -z $pr_exceptions ]; then
51
# We might have failed due to unmerged PRs. Try to make exceptions for --from-pr added in this PR
52
# to software-layer, and see if then it passes. If so, we can report a more specific fail_msg
53
# Note that if no --from-pr's were used in this PR, $pr_exceptions will be empty and we might as
0 commit comments