aboutsummaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-06-27 05:31:07 +0800
committerobscuren <geffobscura@gmail.com>2014-06-27 05:31:07 +0800
commit1b74b98f90d6641b2cd18c60dc9b5829a9870d86 (patch)
tree66bcdee3b6cf78d60296eb79d8aa39d480355c3f /install.sh
parentd57b7e8d5fd59007e7fc42132de5cc9459a2bc71 (diff)
downloadgo-tangerine-1b74b98f90d6641b2cd18c60dc9b5829a9870d86.tar
go-tangerine-1b74b98f90d6641b2cd18c60dc9b5829a9870d86.tar.gz
go-tangerine-1b74b98f90d6641b2cd18c60dc9b5829a9870d86.tar.bz2
go-tangerine-1b74b98f90d6641b2cd18c60dc9b5829a9870d86.tar.lz
go-tangerine-1b74b98f90d6641b2cd18c60dc9b5829a9870d86.tar.xz
go-tangerine-1b74b98f90d6641b2cd18c60dc9b5829a9870d86.tar.zst
go-tangerine-1b74b98f90d6641b2cd18c60dc9b5829a9870d86.zip
Check if go install succeed
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/install.sh b/install.sh
index fc4724217..9719a1afc 100644
--- a/install.sh
+++ b/install.sh
@@ -49,5 +49,9 @@ else
fi
go install
+if [ $? == 0 ]; then
+ echo "go install failed"
+ exit
+fi
echo "done. Please run $exe :-)"