We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 196a512 commit 0f7c79bCopy full SHA for 0f7c79b
Makefile
@@ -6,9 +6,9 @@ upload: all
6
7
clean:
8
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
11
python setup.py clean --all
+ for _kill_path in $$(find . -type f -name "*.pyc"); do rm -f $$_kill_path; done
+ for _kill_path in $$(find . -name "__pycache__"); do rm -rf $$_kill_path; done
12
13
test:
14
python setup.py test
0 commit comments