more standard timestamp

This commit is contained in:
Jeff Carr 2025-01-19 16:07:31 -06:00
parent d51f5b385a
commit 6ea86d154e
1 changed files with 1 additions and 1 deletions

View File

@ -317,5 +317,5 @@ func (c *controlBox) getDateStamp(tag string) string {
// Parse the Unix timestamp into a time.Time object // Parse the Unix timestamp into a time.Time object
gitTagDate := time.Unix(gitTagTimestampInt, 0) gitTagDate := time.Unix(gitTagTimestampInt, 0)
return gitTagDate.UTC().Format("2006/01/02 15:04:05 UTC") return gitTagDate.UTC().Format("2006-01-02_15:04:05_UTC") // same format used in forge. close to RFC3339
} }