Compare commits

..

2 Commits

Author SHA1 Message Date
7d4ce0c8ed Bump version to 0.9.91 2024-01-23 10:23:06 -05:00
b994e1a26c Add cleanup of pycaches to CLI install 2024-01-23 10:22:50 -05:00

View File

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