Joshua M. Boniface
f248d579df
Also fixes up the Debian packaging such that this works how I would want, with proper module installation while leaving everything else untouched. Finally implements automatic installation and removal of the BASH completion for the PVC command.
7 lines
161 B
Bash
7 lines
161 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
|