Created
December 20, 2014 02:49
-
-
Save benschw/7b479c42f426ef07cb79 to your computer and use it in GitHub Desktop.
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
pushd ~ | |
wget -q -O go1.3.linux-amd64.tar.gz http://golang.org/dl/go1.3.linux-amd64.tar.gz | |
tar -xzf go1.3.linux-amd64.tar.gz | |
export GOROOT=~/go | |
export PATH=$GOROOT/bin:$PATH | |
rm -rf ~/go/src/pkg/appengine | |
rm -rf ~/go/src/pkg/appengine_internal | |
popd | |
go get | |
go test ./... | |
go build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment