Skip to content

Commit

Permalink
Fix kubectl-kudo flag conflict #1120 (#1121)
Browse files Browse the repository at this point in the history
Remove cli package params list version shorthand flag `-v`

Fix:  #1120
  • Loading branch information
sharego authored and Aleksey Dukhovniy committed Dec 2, 2019
1 parent 1e9e07d commit 31c57b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kudoctl/cmd/package_params_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func newParamsListCmd(fs afero.Fs, out io.Writer) *cobra.Command {
f.BoolVarP(&list.requiredOnly, "required", "r", false, "Show only parameters which have no defaults but are required.")
f.BoolVar(&list.namesOnly, "names", false, "Display only names.")
f.StringVar(&list.RepoName, "repo", "", "Name of repository configuration to use. (default defined by context)")
f.StringVarP(&list.PackageVersion, "version", "v", "", "A specific package version on the official GitHub repo. (default to the most recent)")
f.StringVar(&list.PackageVersion, "version", "", "A specific package version on the official GitHub repo. (default to the most recent)")

return cmd
}
Expand Down

0 comments on commit 31c57b8

Please sign in to comment.