From eba3fca7bcc18952c62689f96d600725b9d45402 Mon Sep 17 00:00:00 2001 From: Eric Robitaille Date: Fri, 21 Nov 2014 08:05:52 -0500 Subject: [PATCH] go get dependencies on executable --- install.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/install.sh b/install.sh index 0b2ee3df2..957306e75 100755 --- a/install.sh +++ b/install.sh @@ -28,6 +28,14 @@ echo "changing branch to $branch" cd $GOPATH/src/github.com/ethereum/go-ethereum git checkout $branch + +echo "go get -u -d github.com/ethereum/go-ethereum/$path" +go get -v -u -d github.com/ethereum/go-ethereum/$path +if [ $? != 0 ]; then + echo "go get failed" + exit +fi + cd $GOPATH/src/github.com/ethereum/go-ethereum/$path if [ "$exe" == "mist" ]; then