Skip to content
Snippets Groups Projects
Commit b020feeb authored by Ben Gamari's avatar Ben Gamari :turtle:
Browse files

gitlab-ci: Use group instead of subshell

Otherwise the ret variable isn't captured in the parent environment.
parent 3a08e1b1
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ build:
-A testedPackages
--keep-going
--arg bindistTarball $GHC_TARBALL
|| (echo "Build failed!"; ret=1)
|| { echo "Build failed!"; ret=1; }
- scripts/summarize.py || echo "summarize script failed"
- exit $ret
......
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