diff --git a/debian/pvc-client-cli.postinst b/debian/pvc-client-cli.postinst index 511db821..d61943a8 100644 --- a/debian/pvc-client-cli.postinst +++ b/debian/pvc-client-cli.postinst @@ -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