fix: use -v for verbose

This commit is contained in:
Daylin Morgan 2024-03-06 00:34:36 -06:00
parent 78e309bba6
commit c5afd84bac
Signed by: daylin
GPG key ID: 950D13E9719334AD

View file

@ -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"
)