We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a57aadd commit 2cc6031Copy full SHA for 2cc6031
cmd/plan.go
@@ -134,7 +134,7 @@ func systemVars() map[string]string {
134
sysMap["MM"] = fmt.Sprintf("%0.2d", currentTime.Month())
135
sysMap["DD"] = fmt.Sprintf("%0.2d", currentTime.Day())
136
sysMap["HH"] = fmt.Sprintf("%0.2d", currentTime.Hour())
137
- sysMap["MM"] = fmt.Sprintf("%0.2d", currentTime.Minute())
+ sysMap["MI"] = fmt.Sprintf("%0.2d", currentTime.Minute())
138
sysMap["SS"] = fmt.Sprintf("%0.2d", currentTime.Second())
139
140
return sysMap
0 commit comments