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, 13 insertions, 0 deletions
diff --git a/community/go/go.install b/community/go/go.install
new file mode 100644
index 000000000..755f0a442
--- /dev/null
+++ b/community/go/go.install
@@ -0,0 +1,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: