From afad7663f026e0d80c68f3034dffa996f3910c58 Mon Sep 17 00:00:00 2001 From: Ethan Paul <24588726+enpaul@users.noreply.github.com> Date: Fri, 4 Dec 2020 17:15:00 -0500 Subject: [PATCH] Fix clean target not deleting pycache --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3bf0260..1cfcf27 100644 --- a/Makefile +++ b/Makefile @@ -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