Merge "Add "threads" command to gerrit.sh bash_completion script"

This commit is contained in:
Saša Živkov 2016-03-23 18:23:53 +00:00 committed by Gerrit Code Review
commit ced45dfa0b

View File

@ -65,7 +65,7 @@ _gerrit_sh()
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
opts="check restart run start status stop supervise"
opts="check restart run start status stop supervise threads"
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
}