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

fix: typo in a brew error message

This commit is contained in:
Carlos Alexandro Becker 2023-05-02 12:18:36 +00:00
parent 161bc9e706
commit 6eed3e03b0
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -26,7 +26,7 @@ const brewConfigExtra = "BrewConfig"
// ErrMultipleArchivesSameOS happens when the config yields multiple archives
// for linux or windows.
var ErrMultipleArchivesSameOS = errors.New("one tap can handle only archive of an OS/Arch combination. Consider using ids in the brew section")
var ErrMultipleArchivesSameOS = errors.New("one tap can handle only one archive of an OS/Arch combination. Consider using ids in the brew section")
// ErrNoArchivesFound happens when 0 archives are found.
type ErrNoArchivesFound struct {