We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bb6987 commit 17b7d7aCopy full SHA for 17b7d7a
Makefile
@@ -2,5 +2,5 @@ install:
2
python3 -m pip install -r requirements.txt
3
4
clean:
5
- find . -name .pytest_cache -o -name __pycache__ -o -name .idea -o -name .mypy_cache -exec rm -rf {} \;
+ for name in .pytest_cache __pycache__ .vsidea .idea .mypy_cache; do find . -name $$name -exec rm -rf {} \;; done
6
0 commit comments