From ad9c2dd817aab3c8c69d7805ff9162000150d38e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 11 Dec 2020 15:59:11 +0100 Subject: [PATCH] ci: Use correct variable name Whoops, the last changes accidentally changed the CI_COMMIT_REF_NAME variable to something that's not actually defined. Part-of: --- .gitlab-ci/checkout-mutter.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci/checkout-mutter.sh b/.gitlab-ci/checkout-mutter.sh index 999f09061..82096af38 100755 --- a/.gitlab-ci/checkout-mutter.sh +++ b/.gitlab-ci/checkout-mutter.sh @@ -41,8 +41,8 @@ if [ "$CI_MERGE_REQUEST_TARGET_BRANCH_NAME" ]; then fi if [ -z "$mutter_target" ]; then - echo -n Looking for $CI_COMMIT_REF on remote ... - if fetch origin $CI_COMMIT_REF; then + echo -n Looking for $CI_COMMIT_REF_NAME on remote ... + if fetch origin $CI_COMMIT_REF_NAME; then echo \ found mutter_target=FETCH_HEAD else