Skip to content

Commit 0f7c79b

Browse files
committed
better cleanup
1 parent 196a512 commit 0f7c79b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ upload: all
66

77
clean:
88
rm -rf *.egg memsql.egg-info dist build
9-
find . -type f -name "*.pyc" -exec rm {} \;
10-
for _kill_path in $$(find . -name "__pycache__"); do rm -rf $$_kill_path; done
119
python setup.py clean --all
10+
for _kill_path in $$(find . -type f -name "*.pyc"); do rm -f $$_kill_path; done
11+
for _kill_path in $$(find . -name "__pycache__"); do rm -rf $$_kill_path; done
1212

1313
test:
1414
python setup.py test

0 commit comments

Comments
 (0)