Skip to content
Snippets Groups Projects
Commit 5100d51b authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

AtlasBuildScripts: fix externals cleanup after build failure

Remove the `set -e` in the externals build script when running in the
CI. Otherwise the script would never reach the final cleanup stage on
build failures that was implemented in atlas/athena!52479.

Relates to ATLINFR-4561.
parent af34db92
No related branches found
No related tags found
No related merge requests found
Pipeline #4017483 passed
......@@ -79,10 +79,6 @@ while getopts ":t:b:x:k:fch" opt; do
esac
done
# Only stop on errors if we are executing a CI build. Otherwise just count them.
if [ "${ATLAS_CI_BUILD}" = "1" ]; then
set -e
fi
set -o pipefail
ERROR_COUNT=0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment