summaryrefslogtreecommitdiff
path: root/community/go/go.install
blob: d8a228e08f5580451410bc1e74d45a8a9bab7790 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
post_install() {
  # Friendly message for new users
  echo
  echo 'The "liteide" package provides an IDE for editing and building Go projects.'
  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: