Merge pull request #10535 from mattfarina/fix-10534

Fixing issue where OCI handling early causes a bad message
pull/10227/merge
Matt Farina 3 years ago committed by GitHub
commit ea5d7af200
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -578,8 +578,7 @@ func (m *Manager) resolveRepoNames(deps []*chart.Dependency) (map[string]string,
missing := []string{}
for _, dd := range deps {
// Don't map the repository, we don't need to download chart from charts directory
// When OCI is used there is no Helm repository
if dd.Repository == "" || registry.IsOCI(dd.Repository) {
if dd.Repository == "" {
continue
}
// if dep chart is from local path, verify the path is valid

Loading…
Cancel
Save