summaryrefslogtreecommitdiff
path: root/community/go/go.install
blob: 286aaf9dd3bb7d60e9fa38f21b50143f2a68bd57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_install() {
  # Friendly message for new users
  echo
  echo 'Example use of the "go" tool:'
  echo
  echo '    mkdir ~/go'
  echo '    export GOPATH=~/go'
  echo '    export PATH=$PATH:~/go/bin'
  echo '    go get code.google.com/p/go-tour/gotour'
  echo
}

# vim:set ts=2 sw=2 et: