Skip to content

Commit 2d20f38

Browse files
committed
Chore: add Makefile command to recursively clean .cache dirs
1 parent 956670c commit 2d20f38

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,9 @@ ui-build:
107107
clean-build:
108108
rm -rf build/ && rm -rf dist/ && rm -rf *.egg-info
109109

110+
clean-caches:
111+
find . -type d -name ".cache" -exec rm -rf {} + 2>/dev/null && echo "Successfully removed all .cache directories"
112+
110113
dev-publish: ui-build clean-build publish
111114

112115
jupyter-example:

0 commit comments

Comments
 (0)