We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 859f070 commit c48d910Copy full SHA for c48d910
1 file changed
scripts/clean.py
@@ -11,6 +11,7 @@
11
to_remove: list[Path] = []
12
to_remove.extend(ROOT.glob("**/*cache*"))
13
to_remove.extend(ROOT.glob("**/*egg-info*"))
14
+ to_remove.extend(ROOT.glob("**/dist"))
15
16
for path in to_remove:
17
shutil.rmtree(path, ignore_errors=True)
0 commit comments