Browse Source

Fix a shell logic bug.

master
hxsherry 8 years ago
parent
commit
0c7c6471d8
  1. 3
      build/pack/build.sh

3
build/pack/build.sh

@ -15,7 +15,8 @@ cd $GOPATH
# echo "go get golang.org/x" # echo "go get golang.org/x"
# go get golang.org/x # go get golang.org/x
if [ -z "$GOPATH/src/golang.org" ] ; then if [ ! -d "$GOPATH/src/golang.org" ] ; then
echo "git clone https://github.com/eyebluecn/golang.org.git"
git clone https://github.com/eyebluecn/golang.org.git $GOPATH/src/golang.org git clone https://github.com/eyebluecn/golang.org.git $GOPATH/src/golang.org
fi fi

Loading…
Cancel
Save