summaryrefslogtreecommitdiff
path: root/community/go/go.install
diff options
context:
space:
mode:
Diffstat (limited to 'community/go/go.install')
-rw-r--r--community/go/go.install13
1 files changed, 8 insertions, 5 deletions
diff --git a/community/go/go.install b/community/go/go.install
index e0610f3c5..286aaf9dd 100644
--- a/community/go/go.install
+++ b/community/go/go.install
@@ -1,10 +1,13 @@
post_install() {
# Friendly message for new users
- echo "Example use of the \"go\" tool:"
- echo ' mkdir ~/mygoproject'
- echo ' export GOPATH=~/mygoproject'
- echo ' export PATH=\$PATH:\$GOPATH/bin'
- echo ' go get github.com/codegangsta/martini'
+ 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: