Browse Source

Merge pull request #1531 from prometheus/revert-1530-simplify-runtime-version

Revert "Simplify runtime version code more"
pull/1533/head
Julius Volz 9 years ago
parent
commit
17079952c1
  1. 3
      version/info.go

3
version/info.go

@ -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() {

Loading…
Cancel
Save