pvc/debian/pvc-daemon-worker.preinst

6 lines
200 B
Plaintext
Raw Normal View History

#!/bin/sh
# Remove any cached CPython directories or files
echo "Cleaning up existing CPython files"
find /usr/share/pvc/pvcworkerd -type d -name "__pycache__" -exec rm -rf {} \; &>/dev/null || true