From f72550ee46406d729251ef7dcf492d467dc52784 Mon Sep 17 00:00:00 2001 From: Filip Krakowski Date: Fri, 9 Sep 2022 13:49:58 +0200 Subject: [PATCH] Fix --no-override's shorthand clash with global --namespace flag Signed-off-by: Filip Krakowski --- cmd/helm/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/create.go b/cmd/helm/create.go index 2b5a2ce9f..683262153 100644 --- a/cmd/helm/create.go +++ b/cmd/helm/create.go @@ -90,7 +90,7 @@ func newCreateCmd(out io.Writer) *cobra.Command { } cmd.Flags().StringVarP(&o.starter, "starter", "p", "", "the name or absolute path to Helm starter scaffold") - cmd.Flags().BoolVarP(&o.noOverride, "no-override", "n", false, "if specified, does not override the starter's Chart.yaml") + cmd.Flags().BoolVarP(&o.noOverride, "no-override", "o", false, "if specified, does not override the starter's Chart.yaml") return cmd }