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

Report what cause finding chart to fail
This commit is contained in:
Matthew Fisher
2020-09-23 09:00:17 -07:00
committed by GitHub

View File

@@ -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
}