Add quotes around project workspace and target dirs in build-ci.sh

This commit is contained in:
Oleksandr Shulgin 2017-02-01 12:26:46 +01:00 committed by Murat Kabilov
parent 7974dc8c4e
commit 6b0c104d05
1 changed files with 5 additions and 5 deletions

View File

@ -1,13 +1,13 @@
#!/bin/sh #!/bin/sh
set -e -x set -e -x
team_repo=$GOPATH/src/github.bus.zalan.do/acid team_repo="$GOPATH/src/github.bus.zalan.do/acid"
project_dir=$team_repo/postgres-operator project_dir="$team_repo/postgres-operator"
mkdir -p $team_repo mkdir -p "$team_repo"
ln -s $PWD $project_dir ln -s "$PWD" "$project_dir"
cd $project_dir cd "$project_dir"
glide install glide install
make clean docker push make clean docker push