Skip to content

Commit

Permalink
fix(github): publish would prevent compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
fallion committed Oct 5, 2019
1 parent ca9f2d4 commit 58119e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/github/publish.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func (g *Github) Publish(release *release.Release) error {
}

if response.StatusCode != 200 {
return nil, fmt.Errorf("%v returned %v code with error: %v", url, response.StatusCode, response.Status)
return fmt.Errorf("%v returned %v code with error: %v", url, response.StatusCode, response.Status)
}

return nil
Expand Down

0 comments on commit 58119e3

Please sign in to comment.