fix path output for Windows

pull/4399/head
Matthew Fisher 7 years ago
parent 49fc49ecb8
commit d8b46d840b
No known key found for this signature in database
GPG Key ID: 92AA783CBAAE8E3B

@ -141,7 +141,7 @@ func (l *dependencyListCmd) run() error {
r, err := chartutil.LoadRequirements(c) r, err := chartutil.LoadRequirements(c)
if err != nil { if err != nil {
if err == chartutil.ErrRequirementsNotFound { if err == chartutil.ErrRequirementsNotFound {
fmt.Fprintf(l.out, "WARNING: no requirements at %s/charts\n", l.chartpath) fmt.Fprintf(l.out, "WARNING: no requirements at %s\n", filepath.Join(l.chartpath, "charts"))
return nil return nil
} }
return err return err

Loading…
Cancel
Save