diff options
-rw-r--r-- | bash_completion/adb.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bash_completion/adb.bash b/bash_completion/adb.bash index 3c5ea00..b9b52c7 100644 --- a/bash_completion/adb.bash +++ b/bash_completion/adb.bash @@ -129,7 +129,7 @@ _adb_cmd_install() { cur="${COMP_WORDS[COMP_CWORD]}" if [[ $where == OPTIONS ]]; then - COMPREPLY=( $(compgen -W "-l -r -s" -- "${cur}") ) + COMPREPLY=( $(compgen -W "-d -l -r -s" -- "${cur}") ) return fi |