diff options
author | varac <varacanero@zeromail.org> | 2017-03-02 13:41:45 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2017-03-02 13:41:45 +0100 |
commit | a909913dda1307d2d00a6aea7a49c475914bd72e (patch) | |
tree | 2aa3178840f3926e57ab7c98de629e75521fbd34 | |
parent | 31a1902d82b6d96d9028e3dc911f25a04726b997 (diff) |
Quote square brackets in .gitlab-ci.yml
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a466dc5..34eaecc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,7 +11,7 @@ stages: - git describe - build-build-package # Upload packages from the main/default branch to dev-platform deb repo and packaes from all other branches/MRs to the experimental-platform one. - - [ ${CI_BUILD_REF_NAME} != 'master' ] && export REPOSITORY="/srv/experimental-gitbuildpackage" + - "[ ${CI_BUILD_REF_NAME} != 'master' ] && export REPOSITORY='/srv/experimental-gitbuildpackage'" - upload-package # sleep 1h to allow debugging of running container #- sleep 3600 |