Improve error message on deps resolution error (#1727)

Fixes #1356
This commit is contained in:
Rein van 't Veer 2021-03-23 08:44:59 +01:00 committed by GitHub
parent 5ce755e4d8
commit fcf9a7273f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ func (d *ResolvedDependencies) Get(chart, versionConstraint string) (string, err
}
}
}
return "", fmt.Errorf("no resolved dependency found for \"%s\"", chart)
return "", fmt.Errorf("no resolved dependency found for \"%s\", running \"helmfile deps\" may resolve the issue", chart)
}
func (st *HelmState) mergeLockedDependencies() (*HelmState, error) {