for consistency with other both-ways boolean flags
pull/1211/head
Min RK 2022-11-09 16:31:20 +01:00
rodzic 8802ca2a30
commit 31e9722c82
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 809C6E46EAA899F4
1 zmienionych plików z 7 dodań i 1 usunięć

Wyświetl plik

@ -187,10 +187,16 @@ def get_argparser():
argparser.add_argument(
"--no-clean",
dest="clean",
default=None,
action="store_false",
help="Don't clean up remote checkouts after we are done",
)
argparser.add_argument(
"--clean",
dest="clean",
action="store_true",
help="Clean up remote checkouts after we are done (default).",
)
argparser.set_defaults(clean=None)
argparser.add_argument(
"--push",