diff --git a/cli/packages/util/check-for-update.go b/cli/packages/util/check-for-update.go index 9f9daa332..5fbf39a1e 100644 --- a/cli/packages/util/check-for-update.go +++ b/cli/packages/util/check-for-update.go @@ -5,6 +5,7 @@ import ( "fmt" "io/ioutil" "net/http" + "errors" ) func CheckForUpdate() { @@ -25,7 +26,7 @@ func getLatestTag(repoOwner string, repoName string) (string, error) { return "", err } if resp.StatusCode != 200 { - return "", fmt.Sprintf("GitHub API returned status code %d", resp.StatusCode) + return "", errors.New(fmt.Sprintf("GitHub API returned status code %d", resp.StatusCode)) } defer resp.Body.Close()