mirror of
https://github.com/daylinmorgan/swydd.git
synced 2024-11-06 17:23:16 -06:00
fix: use -v for verbose
This commit is contained in:
parent
78e309bba6
commit
c5afd84bac
1 changed files with 3 additions and 1 deletions
|
@ -188,7 +188,9 @@ def cli() -> None:
|
|||
for flag_args, flag_kwargs in ctx._flag_defs:
|
||||
shared.add_argument(*flag_args, **flag_kwargs)
|
||||
|
||||
shared.add_argument("--verbose", help="use verbose output", action="store_true")
|
||||
shared.add_argument(
|
||||
"-v", "--verbose", help="use verbose output", action="store_true"
|
||||
)
|
||||
shared.add_argument(
|
||||
"-n", "--dry-run", help="don't execute tasks", action="store_true"
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue