add --passkey to bash tab completion

This commit is contained in:
Carson McManus 2017-05-22 18:21:22 -04:00
parent df301b1f5a
commit f68b617e7c

View file

@ -4,8 +4,8 @@ _steamguard()
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
opts="--help --verbose --maFiles-path"
opts="--help --verbose --maFiles-path --passkey"
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
}