12 lines
294 B
Bash
12 lines
294 B
Bash
#!/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
|
|
|
|
# Remove pycaches
|
|
find /usr/lib/python3/dist-packages/pvc -type d -name "__pycache__" -exec rm -fr {} + &>/dev/null || true
|
|
|
|
exit 0
|