Skip to content

Commit

Permalink
fix(dashmate): remove confusing short flag name (#2165)
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov authored Sep 26, 2024
1 parent 0609fe8 commit 1890a4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dashmate/src/commands/reset.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default class ResetCommand extends ConfigBaseCommand {

static flags = {
...ConfigBaseCommand.flags,
hard: Flags.boolean({ char: 'h', description: 'reset config as well as services and data', default: false }),
hard: Flags.boolean({ description: 'reset config as well as services and data', default: false }),
force: Flags.boolean({ char: 'f', description: 'skip running services check', default: false }),
platform: Flags.boolean({ char: 'p', description: 'reset platform services and data only', default: false }),
verbose: Flags.boolean({ char: 'v', description: 'use verbose mode for output', default: false }),
Expand Down

0 comments on commit 1890a4c

Please sign in to comment.