fix missing formatting character error in wrapf statement

Signed-off-by: tariqibrahim <tariq.ibrahim@microsoft.com>
pull/4881/head
tariqibrahim 7 years ago
parent 23a0d4e08c
commit a59bff97c4

@ -147,7 +147,7 @@ func initRepo(url, cacheFile string, out io.Writer, skipRefresh bool, home helmp
// In this case, the cacheFile is always absolute. So passing empty string
// is safe.
if err := r.DownloadIndexFile(""); err != nil {
return nil, errors.Wrapf(err, "looks like %q is not a valid chart repository or cannot be reached: %s", url)
return nil, errors.Wrapf(err, "%s is not a valid chart repository or cannot be reached", url)
}
return &c, nil

Loading…
Cancel
Save