This commit is contained in:
Craig Peterson 2017-04-19 15:52:35 -06:00
parent 0149806086
commit 54336ccd35

View file

@ -91,7 +91,7 @@ func main() {
if !strings.HasPrefix(last, "Last updated:") {
log.Fatal("Release body is not what I expected. Abort!")
}
last = fmt.Sprintf("Last updated: %s", time.Now().Format("Mon Jan 2 2006 @15:04 MST"))
last = fmt.Sprintf("Last updated: %s", time.Now().Format("Mon Jan 2 2006 @ 15:04 MST"))
lines[len(lines)-1] = last
body = strings.Join(lines, "\n")
rel.Body = &body