git » go-1.20.git » commit b392efb

Fix for FS#41561

author Alexander Rødseth
2014-08-27 07:17:51 UTC
committer Alexander Rødseth
2014-08-27 07:17:51 UTC
parent 2cc387fef2148e314db264a248370181260adbbe

Fix for FS#41561

PKGBUILD +1 -1
go.install +7 -0

diff --git a/PKGBUILD b/PKGBUILD
index 02df0f6..ac90a35 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -11,7 +11,7 @@
 pkgname=go
 epoch=2
 pkgver=1.3.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Compiler and tools for the Go programming language from Google'
 arch=('x86_64' 'i686')
 url='http://golang.org/'
diff --git a/go.install b/go.install
index d8a228e..9b25f77 100644
--- a/go.install
+++ b/go.install
@@ -10,6 +10,13 @@ post_install() {
   echo '    export PATH=$PATH:~/go/bin'
   echo '    go get code.google.com/p/go-tour/gotour'
   echo
+  ####
+  post_upgrade
+}
+
+post_upgrade() {
+  # See FS#41561
+  go install std 
 }
 
 # vim:set ts=2 sw=2 et: