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