summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-04-06 15:24:22 +0100
committerMatthew Pickering <matthewtpickering@gmail.com>2022-04-06 15:24:22 +0100
commitadd9fc8a2de3765a526bba773859dafd0cef3c11 (patch)
treec30ea3d8fa7b3c66b376ab8035db73fcf70e28b5
parent4bec271aee1e36b4ccb195aaaea5341980acf1e5 (diff)
downloadhaskell-add9fc8a2de3765a526bba773859dafd0cef3c11.tar.gz
Fix another syntax error..
-rwxr-xr-x.gitlab/ci.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab/ci.sh b/.gitlab/ci.sh
index 86e0835a01..539f3c7a74 100755
--- a/.gitlab/ci.sh
+++ b/.gitlab/ci.sh
@@ -453,7 +453,7 @@ function determine_metric_baseline() {
# We should never try to build a validate build in a release pipeline so this is
# very defensive in case we have made a mistake somewhere.
function check_release_build() {
- if [ -z "${RELEASE_JOB:-}" ] && [["${BUILD_FLAVOUR:-}" == *"validate"* ]]
+ if [ -z "${RELEASE_JOB:-}" ] && [[ "${BUILD_FLAVOUR:-}" == *"validate"* ]]
then
info "Exiting build because this is a validate build in a release job"
exit 0;