Skip to content

Commit

Permalink
fix(bin): argument for --delete-profile, --save-profile and --delete-…
Browse files Browse the repository at this point in the history
…profile is now required
  • Loading branch information
JiPaix committed Aug 3, 2021
1 parent 36216b3 commit 61d382e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/bin/commander.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ export class BaseCommander {
0
)
.option('--no-secure', 'Allow files sent by bot with different name than the one requested')
.option('--save-profile [string]', 'save current options as a profile')
.option('--delete-profile [string]', 'delete profile')
.option('--set-profile [string]', 'set profile as default')
.option('--save-profile <string>', 'save current options as a profile')
.option('--delete-profile <string>', 'delete profile')
.option('--set-profile <string>', 'set profile as default')
.option('--list-profile', 'list all available profiles')
.parse()
}
Expand Down

0 comments on commit 61d382e

Please sign in to comment.