Repo structure modification
[functest.git] / functest / cli / functest-complete.sh
1 _functest_completion() {
2     COMPREPLY=( $( env COMP_WORDS="${COMP_WORDS[*]}" \
3                    COMP_CWORD=$COMP_CWORD \
4                    _FUNCTEST_COMPLETE=complete $1 ) )
5     return 0
6 }
7
8 complete -F _functest_completion -o default functest;