diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2021-05-12 11:47:02 +0100 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2021-05-12 11:47:58 +0100 |
commit | 6a950d7530dedd4b6880ef5800b4a98b1490ed3f (patch) | |
tree | 1ed88986552b033d066d7e45761257450c26b427 | |
parent | 736d47ffb7370ba4348b142c913b88e4c82347d0 (diff) | |
download | haskell-wip/ci-unbound.tar.gz |
ci: Fix unbound CI_MERGE_REQUEST_SOURCE_BRANCH_NAME variablewip/ci-unbound
Fixes #19831
-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 cee1bde9d7..99c7e8bfa5 100755 --- a/.gitlab/ci.sh +++ b/.gitlab/ci.sh @@ -569,7 +569,7 @@ if [ -n "${CROSS_TARGET:-}" ]; then target_triple="$CROSS_TARGET" fi -echo "Branch name $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME" +echo "Branch name ${CI_MERGE_REQUEST_SOURCE_BRANCH_NAME:-}" # Ignore performance improvements in @marge-bot batches. # See #19562. if [ "${CI_MERGE_REQUEST_SOURCE_BRANCH_NAME:-}" == "wip/marge_bot_batch_merge_job" ]; then |