aboutsummaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorEric Robitaille <eric@vianet.ca>2014-11-21 03:25:26 +0800
committerEric Robitaille <eric@vianet.ca>2014-11-21 03:25:26 +0800
commitd5ac24907e0e98329d2db0d982c035f9d2635c6d (patch)
tree9f22f1a966cfea72181997709b67034836187274 /install.sh
parent0f471291134c0b38df07b9a9cffda5c9807435ae (diff)
downloadgo-tangerine-d5ac24907e0e98329d2db0d982c035f9d2635c6d.tar
go-tangerine-d5ac24907e0e98329d2db0d982c035f9d2635c6d.tar.gz
go-tangerine-d5ac24907e0e98329d2db0d982c035f9d2635c6d.tar.bz2
go-tangerine-d5ac24907e0e98329d2db0d982c035f9d2635c6d.tar.lz
go-tangerine-d5ac24907e0e98329d2db0d982c035f9d2635c6d.tar.xz
go-tangerine-d5ac24907e0e98329d2db0d982c035f9d2635c6d.tar.zst
go-tangerine-d5ac24907e0e98329d2db0d982c035f9d2635c6d.zip
Updated install.sh - github paths for executables
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/install.sh b/install.sh
index f6232af83..1f03f3f99 100755
--- a/install.sh
+++ b/install.sh
@@ -1,7 +1,7 @@
#!/bin/sh
if [ "$1" == "" ]; then
- echo "Usage $0 executable branch ethereum develop"
+ echo "Usage $0 executable ethereum branch develop"
echo "executable ethereum or mist"
echo "branch develop or master"
exit
@@ -19,8 +19,8 @@ if [ "$GOPATH" == "" ]; then
exit
fi
-echo "go get -u -d github.com/ethereum/go-ethereum/$exe"
-go get -v -u -d github.com/ethereum/go-ethereum/$exe
+echo "go get -u -d github.com/ethereum/go-ethereum/cmd/$exe"
+go get -v -u -d github.com/ethereum/go-ethereum/cmd/$exe
if [ $? != 0 ]; then
echo "go get failed"
exit
@@ -31,7 +31,7 @@ cd $GOPATH/src/github.com/ethereum/go-ethereum
git checkout $branch
echo "go-ethereum"
-cd $GOPATH/src/github.com/ethereum/go-ethereum/$exe
+cd $GOPATH/src/github.com/ethereum/go-ethereum/cmd/$exe
git checkout $branch
if [ "$exe" == "mist" ]; then