Skip to content

Commit

Permalink
Deprecate -v flag to show version (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
micnncim authored Sep 27, 2020
1 parent 463dbc8 commit cebd89e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func NewCmdReap(streams genericclioptions.IOStreams) *cobra.Command {
cmd.Flags().DurationVar(&o.timeout, "timeout", 0, "The length of time to wait before giving up on a delete, zero means determine a timeout from the size of the object")
cmd.Flags().BoolVarP(&o.quiet, "quiet", "q", false, "If true, no output is produced")
cmd.Flags().BoolVarP(&o.interactive, "interactive", "i", false, "If true, a prompt asks whether resources can be deleted")
cmd.Flags().BoolVarP(&o.showVersion, "version", "v", false, "If true, show the version of this plugin")
cmd.Flags().BoolVar(&o.showVersion, "version", false, "If true, show the version of this plugin")

return cmd
}
Expand Down

0 comments on commit cebd89e

Please sign in to comment.