1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00

fix: Typo in debug message for custom release notes

When release notes are added via the --release-notes
and we run in debug mode, a message "custom release notes ..."
is logged. This message had a typo
This commit is contained in:
Andy Grunwald 2018-01-20 16:20:54 +01:00
parent fcbdaf32c8
commit 59854d379a

View File

@ -101,7 +101,7 @@ func Release(flags Flags) error {
return err
}
log.WithField("file", notes).Info("loaded custom release notes")
log.WithField("file", notes).Debugf("custon release notes: \n%s", string(bts))
log.WithField("file", notes).Debugf("custom release notes: \n%s", string(bts))
ctx.ReleaseNotes = string(bts)
}
ctx.Snapshot = flags.Bool("snapshot")