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

fix: typo on warning log

The warning `optimistically guessing `brew[%d].installs`, double check` made me thinks of a hidden `installs` option (note the final "s"). Thanks god, it's just a typo, the existing and documented option is `install` (without the "s")
This commit is contained in:
nervo 2020-09-16 20:43:37 +02:00 committed by GitHub
parent a8e6b21b6c
commit f3f8b71373
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -96,7 +96,7 @@ func (Pipe) Default(ctx *context.Context) error {
)
}
brew.Install = strings.Join(installs, "\n")
log.Warnf("optimistically guessing `brew[%d].installs`, double check", i)
log.Warnf("optimistically guessing `brew[%d].install`, double check", i)
}
if brew.GitHub.String() != "" {
deprecate.Notice(ctx, "brews.github")