We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8802ca2 commit 31e9722Copy full SHA for 31e9722
repo2docker/__main__.py
@@ -187,10 +187,16 @@ def get_argparser():
187
argparser.add_argument(
188
"--no-clean",
189
dest="clean",
190
- default=None,
191
action="store_false",
192
help="Don't clean up remote checkouts after we are done",
193
)
+ argparser.add_argument(
194
+ "--clean",
195
+ dest="clean",
196
+ action="store_true",
197
+ help="Clean up remote checkouts after we are done (default).",
198
+ )
199
+ argparser.set_defaults(clean=None)
200
201
202
"--push",
0 commit comments