diff options
| -rw-r--r-- | .bash_profile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.bash_profile b/.bash_profile index 0735327..7f24293 100644 --- a/.bash_profile +++ b/.bash_profile @@ -109,6 +109,13 @@ if command -v helm 1>/dev/null 2>&1; then fi fi +# ==== Generate vela autocomplete stuff when it's not there +if command -v vela 1>/dev/null 2>&1; then + if [ ! -f $(brew --prefix)/etc/bash_completion.d/vela ]; then + vela completion bash > $(brew --prefix)/etc/bash_completion.d/vela + fi +fi + # ==== load all bash completions if [ -f $(brew --prefix)/etc/bash_completion ]; then . $(brew --prefix)/etc/bash_completion |
