Skip to content

Commit

Permalink
remove -f shorthand for force flag
Browse files Browse the repository at this point in the history
collides with -f from logs
  • Loading branch information
turcottedanny committed Jan 27, 2021
1 parent bdd629e commit fd3b6dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/cli/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ func Execute() {
rootCmd.PersistentFlags().StringVar(&cli.format,
"format", "", "Command output format. Options: json.")

rootCmd.PersistentFlags().BoolVarP(&cli.force,
"force", "f", false, "Skip confirmation.")
rootCmd.PersistentFlags().BoolVar(&cli.force,
"force", false, "Skip confirmation.")

rootCmd.AddCommand(loginCmd(cli))
rootCmd.AddCommand(clientsCmd(cli))
Expand Down

0 comments on commit fd3b6dd

Please sign in to comment.