1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-09 13:36:56 +02:00
This commit is contained in:
Carlos Alexandro Becker 2017-09-26 18:52:37 -03:00
parent 405285a839
commit fd414e54b8
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ func (Pipe) Description() string {
// Run the pipe
func (Pipe) Run(ctx *context.Context) error {
client, err := client.NewGitHub(ctx, ctx.Config.Brew.GitHub)
client, err := client.NewGitHub(ctx)
if err != nil {
return err
}

View File

@ -23,7 +23,7 @@ func (Pipe) Description() string {
// Run the pipe
func (Pipe) Run(ctx *context.Context) error {
client, err := client.NewGitHub(ctx, ctx.Config.Release.GitHub)
client, err := client.NewGitHub(ctx)
if err != nil {
return err
}