2023-11-29 15:36:49 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Remove any cached CPython directories or files
|
2024-01-23 10:31:30 -05:00
|
|
|
echo "Cleaning up CPython caches"
|
|
|
|
find /usr/share/pvc/pvchealthd -type d -name "__pycache__" -exec rm -fr {} + &>/dev/null || true
|
|
|
|
find /usr/share/pvc/plugins -type d -name "__pycache__" -exec rm -fr {} + &>/dev/null || true
|