From da425cfb0f5bf4994b59baad848a35ad3598c6d4 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 19 Jan 2025 16:07:31 -0600 Subject: [PATCH] more standard timestamp --- buildPackage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildPackage.go b/buildPackage.go index 0d8acbf..642dd29 100644 --- a/buildPackage.go +++ b/buildPackage.go @@ -317,5 +317,5 @@ func (c *controlBox) getDateStamp(tag string) string { // Parse the Unix timestamp into a time.Time object 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 }