Fix clean target not deleting pycache

This commit is contained in:
Ethan Paul 2020-12-04 17:15:00 -05:00
parent 01635c50c7
commit afad7663f0
No known key found for this signature in database
GPG Key ID: C5F5542B54A4D9C6

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