Skip to content

Commit

Permalink
Merge pull request #401 from karsov/patch-1
Browse files Browse the repository at this point in the history
Improve error message in update.checkFromHomebrew
  • Loading branch information
marcomorain authored May 11, 2020
2 parents 4d96a7e + 429f8da commit b62ffd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func checkFromHomebrew(check *Options) error {
command := exec.Command(brew, "outdated", "--json=v1") // #nosec
out, err := command.Output()
if err != nil {
return errors.Wrap(err, "failed to check for updates via `brew`")
return errors.Wrap(err, "failed to check for updates. `brew outdated --json=v1` returned an error")
}

var outdated HomebrewOutdated
Expand Down

0 comments on commit b62ffd3

Please sign in to comment.