8 lines
143 B
Bash
8 lines
143 B
Bash
#!/usr/bin/env bash
|
|
cite "about-completion"
|
|
about-completion "packer completion"
|
|
|
|
if _binary_exists packer; then
|
|
complete -C packer packer
|
|
fi
|