Revert "Simplify runtime version code more"

This commit is contained in:
Fabian Reinartz 2016-04-06 08:39:51 +02:00
parent cb690a2d23
commit 77f5b9d268
1 changed files with 2 additions and 1 deletions

View File

@ -26,6 +26,7 @@ var (
Branch string
BuildUser string
BuildDate string
GoVersion = runtime.Version()
)
// Map provides the iterable version information.
@ -35,7 +36,7 @@ var Map = map[string]string{
"branch": Branch,
"buildUser": BuildUser,
"buildDate": BuildDate,
"goVersion": runtime.Version(),
"goVersion": GoVersion,
}
func init() {