Add cleanup of pycaches to CLI install
This commit is contained in:
parent
6d6420a695
commit
b994e1a26c
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue