5 lines
107 B
Bash
5 lines
107 B
Bash
#!/usr/bin/zsh
|
|
|
|
if [ -e /usr/bin/terraform ]; then
|
|
complete -o nospace -C /usr/bin/terraform terraform
|
|
fi
|