Add "threads" command to gerrit.sh bash_completion script

The command was added to gerrit.sh in commit ed819f30bc in change
I92b75d1ed.

Change-Id: Iba9cfd73f49390b9c89f07098d5c239a28429459
This commit is contained in:
Richard Fearn 2016-03-23 17:04:56 +00:00 committed by Michael Zhou
parent 303674968d
commit 626327ccae

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}) )
}