diff options
author | Ben Gamari <ben@smart-cactus.org> | 2021-11-09 11:36:15 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-11-16 03:12:34 -0500 |
commit | 1f0014a852e9b0a1553bc7a29b5844b4a81d950f (patch) | |
tree | 93bc1abf615ffbfa69c5394294fa52e2fc5454b9 /.gitlab | |
parent | a8e1a75673e9c79a1504f16e87c6bd57488b3fbc (diff) | |
download | haskell-1f0014a852e9b0a1553bc7a29b5844b4a81d950f.tar.gz |
gitlab-ci: Fail if dynamic references are found in a static bindist
Previously we called error, which just prints an error, rather than
fail, which actually fails.
Diffstat (limited to '.gitlab')
-rwxr-xr-x | .gitlab/ci.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab/ci.sh b/.gitlab/ci.sh index e76a5d912b..b3ac97aff4 100755 --- a/.gitlab/ci.sh +++ b/.gitlab/ci.sh @@ -499,7 +499,7 @@ function test_hadrian() { fi done if [ -n "$bad_execs" ]; then - error "the following executables contain dynamic-object references: $bad_execs" + fail "the following executables contain dynamic-object references: $bad_execs" fi fi |