main
Thamognya Kodi 2022-12-26 13:09:15 +07:00
parent 1b03c8ddb4
commit bdb8a6f693
1 changed files with 9 additions and 1 deletions

View File

@ -115,9 +115,17 @@ ipynbcheckpoints-remove:
pytestcache-remove:
find . | grep -E ".pytest_cache" | xargs rm -rf
.PHONY: pkl-remove
pytestcache-remove:
find . | grep -E ".pkl" | xargs rm -rf
.PHONY: log-remove
pytestcache-remove:
find . | grep -E ".log" | xargs rm -rf
.PHONY: build-remove
build-remove:
rm -rf build/
.PHONY: cleanup
cleanup: pycache-remove dsstore-remove mypycache-remove ipynbcheckpoints-remove pytestcache-remove
cleanup: pycache-remove dsstore-remove mypycache-remove ipynbcheckpoints-remove pytestcache-remove pkl-remove log-remove