PKGBUILDs/community/go/go.install
2014-01-27 17:32:44 +00:00

14 lines
288 B
Plaintext

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: