Skip to content

Commit

Permalink
fix: fixing date tag as it was just setting the RFC3339 value instead…
Browse files Browse the repository at this point in the history
… of actually formatting the value 🤦
  • Loading branch information
drew-viles authored Jul 5, 2023
1 parent 705fb70 commit 5884c1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/openstack/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ func GenerateBuilderMetadata(o *flags.BuildOptions) map[string]string {
"os": o.BuildOS,
"k8s": o.KubeVersion,
"gpu": gpu,
"date": time.RFC3339,
"date": time.Now().Format(time.RFC3339),
"rootfs_uuid": o.RootfsUUID,
}
}
Expand Down

0 comments on commit 5884c1e

Please sign in to comment.