setup.sh 226 B

12345678910111213
  1. #!/bin/bash
  2. # Set the root of our go installation
  3. export GOROOT=${IROOT}/go
  4. export GOPATH=${TROOT}
  5. export GOGC=800
  6. # Where to find the go executable
  7. export PATH="$GOROOT/bin:$PATH"
  8. go get ./...
  9. go run src/hello/hello.go &