mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
13 lines
263 B
Text
13 lines
263 B
Text
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:
|