From b78c320b6d24d9b2207a9359a209ddd5bf44a24b Mon Sep 17 00:00:00 2001 From: Benjamin Jorand Date: Wed, 18 Sep 2024 09:10:19 +0200 Subject: [PATCH] fix: remove download logs in templates Signed-off-by: Benjamin Jorand --- cmd/helm/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/install.go b/cmd/helm/install.go index 23ff29d95..00aa673ac 100644 --- a/cmd/helm/install.go +++ b/cmd/helm/install.go @@ -268,7 +268,7 @@ func runInstall(args []string, client *action.Install, valueOpts *values.Options err = errors.Wrap(err, "An error occurred while checking for chart dependencies. You may need to run `helm dependency build` to fetch missing dependencies") if client.DependencyUpdate { man := &downloader.Manager{ - Out: out, + Out: os.Stderr, ChartPath: cp, Keyring: client.ChartPathOptions.Keyring, SkipUpdate: false,