version: add GitCommitTime to Meta

Updates tailscale/corp#1297

Signed-off-by: Maisem Ali <maisem@tailscale.com>
This commit is contained in:
Maisem Ali
2024-05-16 10:31:44 -04:00
committed by Maisem Ali
parent 359ef61263
commit 8feb4ff5d2
2 changed files with 6 additions and 0 deletions
+2
View File
@@ -105,6 +105,7 @@ type embeddedInfo struct {
valid bool
commit string
commitDate string
commitTime string
dirty bool
}
@@ -126,6 +127,7 @@ var getEmbeddedInfo = lazy.SyncFunc(func() embeddedInfo {
case "vcs.revision":
ret.commit = s.Value
case "vcs.time":
ret.commitTime = s.Value
if len(s.Value) >= len("yyyy-mm-dd") {
ret.commitDate = s.Value[:len("yyyy-mm-dd")]
ret.commitDate = strings.ReplaceAll(ret.commitDate, "-", "")