Skip to content

Commit 2cc6031

Browse files
committed
MM was twice instead of MI
1 parent a57aadd commit 2cc6031

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/plan.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ func systemVars() map[string]string {
134134
sysMap["MM"] = fmt.Sprintf("%0.2d", currentTime.Month())
135135
sysMap["DD"] = fmt.Sprintf("%0.2d", currentTime.Day())
136136
sysMap["HH"] = fmt.Sprintf("%0.2d", currentTime.Hour())
137-
sysMap["MM"] = fmt.Sprintf("%0.2d", currentTime.Minute())
137+
sysMap["MI"] = fmt.Sprintf("%0.2d", currentTime.Minute())
138138
sysMap["SS"] = fmt.Sprintf("%0.2d", currentTime.Second())
139139

140140
return sysMap

0 commit comments

Comments
 (0)