From 6b0c104d0533fb3a05aec82bfd217077f9476901 Mon Sep 17 00:00:00 2001 From: Oleksandr Shulgin Date: Wed, 1 Feb 2017 12:26:46 +0100 Subject: [PATCH] Add quotes around project workspace and target dirs in build-ci.sh --- build-ci.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-ci.sh b/build-ci.sh index 5a89706ec..6ca08fbaf 100755 --- a/build-ci.sh +++ b/build-ci.sh @@ -1,13 +1,13 @@ #!/bin/sh set -e -x -team_repo=$GOPATH/src/github.bus.zalan.do/acid -project_dir=$team_repo/postgres-operator +team_repo="$GOPATH/src/github.bus.zalan.do/acid" +project_dir="$team_repo/postgres-operator" -mkdir -p $team_repo +mkdir -p "$team_repo" -ln -s $PWD $project_dir -cd $project_dir +ln -s "$PWD" "$project_dir" +cd "$project_dir" glide install make clean docker push