go get deps doesnt work with develop branch

This commit is contained in:
Eric Robitaille 2014-11-21 08:16:32 -05:00
parent eba3fca7bc
commit 28b7dcc204

View File

@ -28,13 +28,17 @@ echo "changing branch to $branch"
cd $GOPATH/src/github.com/ethereum/go-ethereum cd $GOPATH/src/github.com/ethereum/go-ethereum
git checkout $branch git checkout $branch
# installing package dependencies doesn't work for develop
# branch as go get always pulls from master head
# so build will continue to fail, but this installs locally
# for people who git clone since go install will manage deps
echo "go get -u -d github.com/ethereum/go-ethereum/$path" #echo "go get -u -d github.com/ethereum/go-ethereum/$path"
go get -v -u -d github.com/ethereum/go-ethereum/$path #go get -v -u -d github.com/ethereum/go-ethereum/$path
if [ $? != 0 ]; then #if [ $? != 0 ]; then
echo "go get failed" # echo "go get failed"
exit # exit
fi #fi
cd $GOPATH/src/github.com/ethereum/go-ethereum/$path cd $GOPATH/src/github.com/ethereum/go-ethereum/$path