From 1bfcd3a6183c2b13e8c5702ec08a085e1415f706 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Mon, 26 Jan 2026 14:49:45 +0100 Subject: [PATCH] Cleanup __pycache__ directories To prevent polluting the freezefs etc. --- scripts/cleanup_pyc.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/cleanup_pyc.sh b/scripts/cleanup_pyc.sh index 55f63f4b..6235fb75 100755 --- a/scripts/cleanup_pyc.sh +++ b/scripts/cleanup_pyc.sh @@ -1 +1,2 @@ -find internal_filesystem -iname "*.pyc" -exec rm {} \; +find internal_filesystem/ -iname "*.pyc" -exec rm {} \; +find internal_filesystem/ -iname "__pycache__" -exec rmdir {} \;