From ca15778ac893214db59d521381364e5a5fdb3515 Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Thu, 30 Aug 2018 01:17:35 +0200 Subject: [PATCH] Make clean default to all --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a7a1458a..76f1f7a9 100644 --- a/setup.py +++ b/setup.py @@ -102,7 +102,7 @@ class Clean(Command): if self.docs: paths.update(Clean.DOCS) - if self.all: + if self.all or not paths: paths.update(Clean.ALL) for path in sorted(list(paths)):