summaryrefslogtreecommitdiff
path: root/community/go/go.install
blob: 755f0a442f79836b5ea684a0fe9d48cd7f76a0cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_upgrade() {
  # Friendly message to the user
  echo "Example use of the \"go\" tool as a user:"
  echo "    mkdir ~/go"
  echo "    export GOPATH=~/go"
  echo "    go get website.com/user/module"
}

post_install() {
  post_upgrade
}

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