Accept vendor-specified build date if .git/ is unavailable

Fixes #10053
This commit is contained in:
Anthony Fok 2022-06-28 07:59:03 -06:00 committed by Bjørn Erik Pedersen
parent 241481931f
commit 8ebcaa5394
2 changed files with 6 additions and 0 deletions

View file

@ -38,6 +38,8 @@ const (
)
var (
// buildDate allows vendor-specified build date when .git/ is unavailable.
buildDate string
// vendorInfo contains vendor notes about the current build.
vendorInfo string
)

View file

@ -153,6 +153,10 @@ func BuildVersionString() string {
osArch := bi.GoOS + "/" + bi.GoArch
date := bi.RevisionTime
if date == "" {
// Accept vendor-specified build date if .git/ is unavailable.
date = buildDate
}
if date == "" {
date = "unknown"
}