pvc/debian/pvc-client-cli.postinst

12 lines
266 B
Plaintext
Raw Normal View History

2018-06-17 14:55:13 -04:00
#!/bin/sh
# Generate the bash completion configuration
if [ -d /etc/bash_completion.d ]; then
_PVC_COMPLETE=source_bash pvc > /etc/bash_completion.d/pvc
fi
2024-01-23 10:22:50 -05:00
# Remove pycaches
find /usr/lib/python3/dist-packages/pvc -name "__pycache__" -exec rm -r {} \;
exit 0