chore: Add clean command to Makefile

This commit is contained in:
Vikash Kothary 2022-10-14 19:54:33 +01:00
parent 4d2edcefc2
commit d3c0df2f69

View File

@ -51,6 +51,10 @@ release: release-branch release-tags
publish: build publish: build
@${POETRY} publish @${POETRY} publish
.PHONY: clean
clean:
@find . -name __pycache__ -not -path */.venv/* -print0 | xargs -0 rm -r
.PHONY: open .PHONY: open
open: open:
@${OPEN} ${ANKISYNCD_URL} @${OPEN} ${ANKISYNCD_URL}