From d8b46d840be34f2232cd72ee980b646ccdf8aa6c Mon Sep 17 00:00:00 2001 From: Matthew Fisher <matt.fisher@microsoft.com> Date: Mon, 30 Jul 2018 08:27:12 -0700 Subject: [PATCH] fix path output for Windows --- cmd/helm/dependency.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/dependency.go b/cmd/helm/dependency.go index 231659691..a0388e18d 100644 --- a/cmd/helm/dependency.go +++ b/cmd/helm/dependency.go @@ -141,7 +141,7 @@ func (l *dependencyListCmd) run() error { r, err := chartutil.LoadRequirements(c) if err != nil { 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 err -- GitLab