summaryrefslogtreecommitdiff
path: root/buildPackage.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-19 16:07:31 -0600
committerJeff Carr <[email protected]>2025-01-19 16:07:31 -0600
commitda425cfb0f5bf4994b59baad848a35ad3598c6d4 (patch)
tree7a7497b2aa4fdbc423f9727f7b720a1269b5cc87 /buildPackage.go
parentd51f5b385ab89fd9b898d8feec470289b5db6802 (diff)
Diffstat (limited to 'buildPackage.go')
-rw-r--r--buildPackage.go2
1 files changed, 1 insertions, 1 deletions
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
}