Skip to content

Commit c48d910

Browse files
committed
refactor: add /dist to clean script
1 parent 859f070 commit c48d910

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

scripts/clean.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
to_remove: list[Path] = []
1212
to_remove.extend(ROOT.glob("**/*cache*"))
1313
to_remove.extend(ROOT.glob("**/*egg-info*"))
14+
to_remove.extend(ROOT.glob("**/dist"))
1415

1516
for path in to_remove:
1617
shutil.rmtree(path, ignore_errors=True)

0 commit comments

Comments
 (0)