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

fix missing . in brew sha256

This commit is contained in:
Carlos Alexandro Becker 2017-01-11 15:06:34 -02:00
parent 8f0ce61122
commit 5b5e4f8629
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -125,7 +125,7 @@ func dataFor(config config.ProjectConfig, client *github.Client) (result templat
if err != nil {
return
}
sum, err := sha256sum.For("dist/" + file + config.Archive.Format)
sum, err := sha256sum.For("dist/" + file + "." + config.Archive.Format)
if err != nil {
return
}