Merge pull request #2456 from vlm/master

ensuring bin directory exists before copying
This commit is contained in:
Alex Dadgar 2017-03-19 22:39:36 -07:00 committed by GitHub
commit d99849dc26

View file

@ -15,5 +15,8 @@ fi
echo "--> Installing with tags: $TAGS"
go install -ldflags "-X $LDFLAG" -tags "${TAGS}"
echo "--> Ensuring bin directory exists..."
mkdir -p bin
echo "--> Copying to bin"
cp $GOPATH/bin/nomad bin/nomad