1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-13 13:48:40 +02:00

fixed property name

This commit is contained in:
Carlos Alexandro Becker 2017-04-21 18:55:51 -03:00
parent 8d914d129a
commit 7c0132dcd7
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ type Homebrew struct {
Dependencies []string
Conflicts []string
Description string
URL string
Homepage string
}
// Hooks define actions to run before and/or after something

View File

@ -146,7 +146,7 @@ func dataFor(ctx *context.Context, client client.Client) (result templateData, e
return templateData{
Name: formulaNameFor(ctx.Config.Build.Binary),
Desc: ctx.Config.Brew.Description,
Homepage: ctx.Config.Brew.URL,
Homepage: ctx.Config.Brew.Homepage,
Repo: ctx.Config.Release.GitHub,
Tag: ctx.Git.CurrentTag,
Version: ctx.Version,