From 839b699f7bb4935d5d4373e512b28248e112aea1 Mon Sep 17 00:00:00 2001 From: maheshrijal <62394512+maheshrijal@users.noreply.github.com> Date: Mon, 16 Feb 2026 11:13:58 +0530 Subject: [PATCH] fix(dependency): clarify untar archive cleanup behavior Signed-off-by: maheshrijal <62394512+maheshrijal@users.noreply.github.com> --- pkg/cmd/dependency.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/dependency.go b/pkg/cmd/dependency.go index a3e723847..e457b9048 100644 --- a/pkg/cmd/dependency.go +++ b/pkg/cmd/dependency.go @@ -134,7 +134,7 @@ func addDependencySubcommandFlags(f *pflag.FlagSet, client *action.Dependency, w f.BoolVar(&client.PlainHTTP, "plain-http", false, "use insecure HTTP connections for the chart download") f.StringVar(&client.CaFile, "ca-file", "", "verify certificates of HTTPS-enabled servers using this CA bundle") if withUntar { - f.BoolVar(&client.Untar, "untar", false, "if set to true, will untar the dependency charts after downloading them and remove the chart archives") + f.BoolVar(&client.Untar, "untar", false, "if set to true, will untar dependency charts after downloading them; with the default --untardir (charts/), chart archives are removed after extraction") f.StringVar(&client.UntarDir, "untardir", "charts", "if untar is specified, this flag specifies the directory (relative to chart root) into which dependencies are expanded") } }