You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When there are multiple commands in a script, if one fails, by default Bash continues with the next, and the exit code of the failed command is lost. By setting set -e we instruct Bash to exit the script after a failed command. So if bin/config_build.sh right now the script will continue even if checks fail. If we un-comment that line, that won't be the case anymore.
In the
bin/config_build.sh
we have:That probably needs some additional explanation, but I am not sure how to explain that. Any ideas please?
The text was updated successfully, but these errors were encountered: