From ad738dec40b579de14677a983a9a3b2d279a7615 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 29 Nov 2023 16:22:20 -0500 Subject: [PATCH] Clean up plugin pycache too --- debian/pvc-daemon-health.preinst | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/pvc-daemon-health.preinst b/debian/pvc-daemon-health.preinst index 2eb6ac2c..fe90f97b 100644 --- a/debian/pvc-daemon-health.preinst +++ b/debian/pvc-daemon-health.preinst @@ -3,3 +3,4 @@ # Remove any cached CPython directories or files echo "Cleaning up existing CPython files" find /usr/share/pvc/pvchealthd -type d -name "__pycache__" -exec rm -rf {} \; &>/dev/null || true +find /usr/share/pvc/plugins -type d -name "__pycache__" -exec rm -rf {} \; &>/dev/null || true