From 39e15e70a435743e33879ad1e00f433dfa709af8 Mon Sep 17 00:00:00 2001 From: Bruno Tavares Date: Sat, 26 Sep 2015 01:00:17 -0300 Subject: [PATCH] Fixes bash tab-completion --- completions/kickstart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/completions/kickstart b/completions/kickstart index 001a8f1..d076592 100644 --- a/completions/kickstart +++ b/completions/kickstart @@ -2,7 +2,7 @@ _kickstart_autocomplete() { - local cur=${COM_WORDS[COM_CWORD]} + local cur=${COMP_WORDS[COMP_CWORD]} if [ "$COMP_CWORD" -eq 1 ]; then COMPREPLY=( $(compgen -W "$(kickstart commands)" -- "$cur") )