Skip to content

Commit bc74904

Browse files
committed
Remove pycache on make clean
Signed-off-by: Keshav Priyadarshi <[email protected]>
1 parent fd32f40 commit bc74904

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ check: check_docs
7878
clean:
7979
@echo "-> Clean the Python env"
8080
@PYTHON_EXECUTABLE=${PYTHON_EXE} ./configure --clean
81+
rm -rf .venv/ .*cache/ *.egg-info/ build/ dist/
82+
find . -type f -name '*.py[co]' -delete -o -type d -name __pycache__ -delete
8183

8284
migrate:
8385
@echo "-> Apply database migrations"

0 commit comments

Comments
 (0)