fix missing formatting character error in wrapf statement (#4881)

Signed-off-by: tariqibrahim <tariq.ibrahim@microsoft.com>
pull/4920/head
Tariq Ibrahim 6 years ago committed by Matthew Fisher
parent 7061716406
commit e648c9d1a1

@ -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", url)
return nil, errors.Wrapf(err, "%s is not a valid chart repository or cannot be reached", url)
}
return &c, nil

Loading…
Cancel
Save