aboutsummaryrefslogtreecommitdiffstats
path: root/testing/go-bindata/go-remove-runtime.patch
blob: 4cb0349f72911557e94e840151bed8cf6d6666af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--- ./go-bindata/version.go.orig
+++ ./go-bindata/version.go
@@ -6,7 +6,6 @@
 
 import (
 	"fmt"
-	"runtime"
 )
 
 const (
@@ -27,5 +26,5 @@
 	}
 
 	return fmt.Sprintf("%s %d.%d.%s (Go runtime %s).\nCopyright (c) 2010-2013, Jim Teeuwen.",
-		AppName, AppVersionMajor, AppVersionMinor, AppVersionRev, runtime.Version())
+		AppName, AppVersionMajor, AppVersionMinor, AppVersionRev, "1.7.0")
 }