From 3e80bd9ce1bfbccedce4fc766762f578446fc7e0 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Tue, 12 Oct 2021 10:24:56 +0400 Subject: [PATCH] Simplify python-caches-clean Makefile command --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 9a398849c..0d3d8aa86 100644 --- a/Makefile +++ b/Makefile @@ -77,7 +77,6 @@ docs-clean: # Avoid conflicts between .pyc/pycache related files created by local Python interpreters and other interpreters in Docker python-caches-clean: -@find . -name "__pycache__" -prune -exec rm -rf -- \{\} \; - -@find . -name ".pyc" -exec -prune rm -rf -- \{\} \; # Force recreation of the virtual environment used by tox. #