Created
August 22, 2013 13:27
-
-
Save rastasheep/6307141 to your computer and use it in GitHub Desktop.
Install go on Semaphore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Folder for go instalation | |
mkdir $MYHOME/go | |
sudo apt-get install -y mercurial meld build-essential bison libc6-dev-i386 | |
hg clone -r release https://go.googlecode.com/hg/ $MYHOME/go | |
export PATH=$MYHOME/go/bin:$PATH | |
cd $MYHOME/go/src | |
./all.bash | |
# Export go exec folder to path | |
export PATH=$PATH:$MYHOME/go/bin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment