From 2d20f38406e4e2c2b0a39763a5810aca223aa5b2 Mon Sep 17 00:00:00 2001 From: George Sittas Date: Thu, 2 Oct 2025 15:53:41 +0300 Subject: [PATCH] Chore: add Makefile command to recursively clean `.cache` dirs --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index fbf77b8f9b..89b5be5131 100644 --- a/Makefile +++ b/Makefile @@ -107,6 +107,9 @@ ui-build: clean-build: rm -rf build/ && rm -rf dist/ && rm -rf *.egg-info +clean-caches: + find . -type d -name ".cache" -exec rm -rf {} + 2>/dev/null && echo "Successfully removed all .cache directories" + dev-publish: ui-build clean-build publish jupyter-example: