Fix make clean

This commit is contained in:
Timmy Welch 2022-11-24 09:41:51 -08:00
parent cc2ef8593c
commit 3f9e5457f6
No known key found for this signature in database

View File

@ -34,7 +34,7 @@ $(PYTHON_VENV):
$(PY3) -m venv $(VENV)
clean:
find . -maxdepth 4 -type d -name "__pycache__"
find . -maxdepth 4 -type d -name "__pycache__" -print -depth -exec rm -rf {} \;
rm -rf $(PACKAGE_PATH) $(INSTALL_STAMP) build dist MANIFEST comictaggerlib/ctversion.py
$(MAKE) -C mac clean