Add cleanup of pycaches to CLI install

This commit is contained in:
Joshua Boniface 2024-01-23 10:22:50 -05:00
parent 6d6420a695
commit b994e1a26c
1 changed files with 3 additions and 0 deletions

View File

@ -5,4 +5,7 @@ if [ -d /etc/bash_completion.d ]; then
_PVC_COMPLETE=source_bash pvc > /etc/bash_completion.d/pvc _PVC_COMPLETE=source_bash pvc > /etc/bash_completion.d/pvc
fi fi
# Remove pycaches
find /usr/lib/python3/dist-packages/pvc -name "__pycache__" -exec rm -r {} \;
exit 0 exit 0