1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

45 lines
848 B
Go
Raw Normal View History

package version
import (
"fmt"
"runtime/debug"
"strconv"
"time"
)
2020-10-12 12:55:10 -04:00
// NOTE: main() updates these.
var (
SHA = ""
2020-10-12 12:55:10 -04:00
Version = ""
BuildTime = ""
)
var versionCache string
// VersionString returns the version banner.
func VersionString() string {
if versionCache != "" {
return versionCache
}
var version string
if SHA != "" {
version = fmt.Sprintf("%s (%s)", Version, SHA)
} else {
version = fmt.Sprintf("%s-dev", Version) // no SHA. '0.x.y-dev' indicates it is run from source without build script.
}
if info, ok := debug.ReadBuildInfo(); !ok && info == nil {
version += " (non-modules)"
}
if BuildTime != "" {
i, err := strconv.ParseInt(BuildTime, 10, 64)
if err == nil {
tm := time.Unix(i, 0)
version += fmt.Sprintf(" built %s", tm.Format(time.RFC822))
}
}
versionCache = version
return version
}