Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-03-02 18:16:07 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-03-02 18:16:07 +0300
commitf38683df1f619b2a1960e1415b9326354a4b5327 (patch)
tree23d469a81d3d1866a2ab71ba406aa84cd954f99a /lib/gitlab/ci/templates/Go.gitlab-ci.yml
parent5bc7c18ad37cde0ffdf1aa4ba2cee27c92ec69f6 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/ci/templates/Go.gitlab-ci.yml')
-rw-r--r--lib/gitlab/ci/templates/Go.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gitlab/ci/templates/Go.gitlab-ci.yml b/lib/gitlab/ci/templates/Go.gitlab-ci.yml
index b5dd0005013..19e4ffdbe1e 100644
--- a/lib/gitlab/ci/templates/Go.gitlab-ci.yml
+++ b/lib/gitlab/ci/templates/Go.gitlab-ci.yml
@@ -16,9 +16,9 @@ variables:
# repository in /go/src/gitlab.com/namespace/project
# Thus, making a symbolic link corrects this.
before_script:
- - mkdir -p $GOPATH/src/$(dirname $REPO_NAME)
- - ln -svf $CI_PROJECT_DIR $GOPATH/src/$REPO_NAME
- - cd $GOPATH/src/$REPO_NAME
+ - mkdir -p "$GOPATH/src/$(dirname $REPO_NAME)"
+ - ln -svf "$CI_PROJECT_DIR" "$GOPATH/src/$REPO_NAME"
+ - cd "$GOPATH/src/$REPO_NAME"
stages:
- test