9 lines
169 B
Bash
9 lines
169 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
|
|
|
|
exit 0
|