packages/cli: cmd_clean(): reword output

This commit is contained in:
InsanePrawn 2022-09-22 07:01:31 +02:00
parent c12b702383
commit 4fc45bf098

View file

@ -169,7 +169,7 @@ def cmd_clean(what: Iterable[str] = ['all'], force: bool = False, noop: bool = F
dir_lines = '\n'.join(dirs)
verb = 'Would remove' if noop else 'Removing'
logging.info(verb + ' directories:\n' + dir_lines)
logging.info(verb + ':\n' + dir_lines)
if not (noop or force):
if not click.confirm("Really remove all of these?", default=True):