Make icingacli bash completion working

fixes #5803
This commit is contained in:
Alexander Klimov 2014-05-22 16:30:53 +02:00
parent 6a33f4e5e0
commit f07776890e
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ _icingacli_completion()
local cur opts
opts="${COMP_WORDS[*]}"
cur="${COMP_WORDS[COMP_CWORD]}"
COMPREPLY=($($opts --autocomplete --autoindex $COMP_CWORD))
COMPREPLY=($($opts --autocomplete --autoindex $COMP_CWORD < /dev/null))
return 0
}