Archived
1
0

fix checks for gx and gx-go

This commit is contained in:
Jeff Becker 2016-05-13 09:56:51 -04:00
parent 7f1800a0c6
commit 5da696d1c8
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B

View File

@ -58,6 +58,10 @@ mkdir -p $GOPATH
if [ "x$ipfs" == "xyes" ] ; then if [ "x$ipfs" == "xyes" ] ; then
if [ ! -e $GOPATH/bin/gx ] ; then if [ ! -e $GOPATH/bin/gx ] ; then
echo "obtaining gx" echo "obtaining gx"
go get -u -v github.com/whyrusleeping/gx
fi
if [ ! -e $GOPATH/bin/gx-go ] ; then
echo "obtaining gx-go"
go get -u -v github.com/whyrusleeping/gx-go go get -u -v github.com/whyrusleeping/gx-go
fi fi
mkdir -p vendor/gx/ipfs mkdir -p vendor/gx/ipfs