Use exit code to fail when code compile fails

pull/143/head
David Finol 2021-08-26 17:54:47 -05:00
parent 19201393f1
commit 43f131df0b
1 changed files with 1 additions and 1 deletions

View File

@ -42,6 +42,6 @@ fi;
# Exit with code from the build step.
#
if [ $USE_EXIT_CODE = true ]; then
if [[ $USE_EXIT_CODE == true || $TEST_RUNNER_EXIT_CODE -ne 2 ]]; then
exit $TEST_RUNNER_EXIT_CODE
fi;