Merge pull request #8244 from carlpett/report-findcharturl-error

Report what cause finding chart to fail
pull/8795/head
Matthew Fisher 4 years ago committed by GitHub
commit b0fdb5461f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -667,7 +667,7 @@ func (m *Manager) findChartURL(name, version, repoURL string, repos map[string]*
if err == nil {
return
}
err = errors.Errorf("chart %s not found in %s", name, repoURL)
err = errors.Errorf("chart %s not found in %s: %s", name, repoURL, err)
return
}

Loading…
Cancel
Save