aboutsummaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-06-27 05:14:50 +0800
committerobscuren <geffobscura@gmail.com>2014-06-27 05:14:50 +0800
commit2d274003b8618a0121d65f58e406afac45b8e569 (patch)
tree195c8202b9873eedff2ee523ffc666c823eb5cc6 /install.sh
parentbf2ac5acc57def2b57454872f8cb493df01d44a7 (diff)
parent52ddf044ae28cf84e61ced2d9193e7d5e806e1ef (diff)
downloadgo-tangerine-2d274003b8618a0121d65f58e406afac45b8e569.tar
go-tangerine-2d274003b8618a0121d65f58e406afac45b8e569.tar.gz
go-tangerine-2d274003b8618a0121d65f58e406afac45b8e569.tar.bz2
go-tangerine-2d274003b8618a0121d65f58e406afac45b8e569.tar.lz
go-tangerine-2d274003b8618a0121d65f58e406afac45b8e569.tar.xz
go-tangerine-2d274003b8618a0121d65f58e406afac45b8e569.tar.zst
go-tangerine-2d274003b8618a0121d65f58e406afac45b8e569.zip
Merge branch 'develop'
Conflicts: install.sh
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh11
1 files changed, 8 insertions, 3 deletions
diff --git a/install.sh b/install.sh
index 4526eb002..fe80a6956 100755
--- a/install.sh
+++ b/install.sh
@@ -26,13 +26,18 @@ if [ $? != 0 ]; then
exit
fi
+echo "serpent-go"
cd $GOPATH/src/github.com/obscuren/mutan
+
+echo "init submodule"
git submodule init
-git sumbodule update
+git submodule update
+echo "eth-go"
cd $GOPATH/src/github.com/ethereum/eth-go
git checkout $branch
+echo "go-ethereum"
cd $GOPATH/src/github.com/ethereum/go-ethereum/$exe
git checkout $branch
@@ -40,9 +45,9 @@ if [ "$exe" == "ethereal" ]; then
echo "Building ethereal GUI. Assuming Qt is installed. If this step"
echo "fails; please refer to: https://github.com/ethereum/go-ethereum/wiki/Building-Ethereum(Go)"
else
- echo "Building ethereum CLI.
+ echo "Building ethereum CLI."
fi
go install
-echo "done..."
+echo "done. Please run $exe :-)"