From 41ccf7b5aba9677573952ba4b4a47be5f0170525 Mon Sep 17 00:00:00 2001 From: Simon Alling Date: Tue, 3 May 2022 17:50:06 +0200 Subject: [PATCH] Fix --untardir reference in --destination description Signed-off-by: Simon Alling --- cmd/helm/pull.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/pull.go b/cmd/helm/pull.go index b1c04fe0a..378301196 100644 --- a/cmd/helm/pull.go +++ b/cmd/helm/pull.go @@ -80,7 +80,7 @@ func newPullCmd(cfg *action.Configuration, out io.Writer) *cobra.Command { f.BoolVar(&client.Untar, "untar", false, "if set to true, will untar the chart after downloading it") f.BoolVar(&client.VerifyLater, "prov", false, "fetch the provenance file, but don't perform verification") f.StringVar(&client.UntarDir, "untardir", ".", "if untar is specified, this flag specifies the name of the directory into which the chart is expanded") - f.StringVarP(&client.DestDir, "destination", "d", ".", "location to write the chart. If this and tardir are specified, tardir is appended to this") + f.StringVarP(&client.DestDir, "destination", "d", ".", "location to write the chart. If this and untardir are specified, untardir is appended to this") addChartPathOptionsFlags(f, &client.ChartPathOptions) err := cmd.RegisterFlagCompletionFunc("version", func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {