Make GtS reported version SemVer-compatible (#2611)

This commit is contained in:
Vyr Cossont 2024-02-12 03:03:56 -08:00 committed by GitHub
parent db835f4810
commit 54ca2cfa6e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -77,6 +77,7 @@ func main() {
}
// version will build a version string from binary's stored build information.
// It is SemVer-compatible so long as Version is SemVer-compatible.
func version() string {
// Read build information from binary
build, ok := godebug.ReadBuildInfo()
@ -115,5 +116,5 @@ func version() string {
}
}
return strings.Join(info, " ")
return strings.Join(info, "+")
}