Merge pull request #3716 from lestrrat/master

Add actionable message in the error
This commit is contained in:
Matthew Fisher 2018-03-22 08:08:42 -07:00 committed by GitHub
commit 282984e75f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -463,7 +463,7 @@ func locateChartPath(repoURL, username, password, name, version string, verify b
return filename, err
}
return filename, fmt.Errorf("failed to download %q", name)
return filename, fmt.Errorf("failed to download %q (hint: running `helm repo update` may help)", name)
}
func generateName(nameTemplate string) (string, error) {