Fix clean target not deleting pycache

This commit is contained in:
2020-12-04 17:15:00 -05:00
parent 01635c50c7
commit afad7663f0

View File

@@ -19,7 +19,7 @@ clean-py:
rm --recursive --force ./dist
rm --recursive --force ./build
rm --recursive --force ./*.egg-info
rm --recursive --force __pycache__/
rm --recursive --force ./**/__pycache__/
clean: clean-tox clean-py; ## Clean temp build/cache files and directories