PKGBUILDs/community/go/go.install
2012-11-22 18:49:32 +00:00

14 lines
263 B
Plaintext

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: