Skip to content

Commit

Permalink
Add -f as alias for --force (#733)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajp-io authored Jul 1, 2024
1 parent 80960b2 commit d05f2e5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cmd/embedded-cluster/uninstall.go
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,10 @@ var resetCommand = &cli.Command{
Value: false,
},
&cli.BoolFlag{
Name: "force",
Usage: "Ignore errors encountered when resetting the node (implies --no-prompt)",
Value: false,
Name: "force",
Aliases: []string{"f"},
Usage: "Ignore errors encountered when resetting the node (implies --no-prompt)",
Value: false,
},
&cli.BoolFlag{
Name: "reboot",
Expand Down

0 comments on commit d05f2e5

Please sign in to comment.