diff options
author | Kenny Root <kroot@google.com> | 2014-06-11 08:46:57 -0700 |
---|---|---|
committer | Siva Velusamy <vsiva@google.com> | 2014-06-11 17:57:34 +0000 |
commit | 31c667a772ef6ba491232daf658195d5fcdcb86c (patch) | |
tree | 8ebd259d96abc7820378ff04892060adba0cf931 /bash_completion | |
parent | 343a78fae064d666b02416b56039b86c554fa615 (diff) | |
download | sdk-31c667a772ef6ba491232daf658195d5fcdcb86c.zip sdk-31c667a772ef6ba491232daf658195d5fcdcb86c.tar.gz sdk-31c667a772ef6ba491232daf658195d5fcdcb86c.tar.bz2 |
bash completion: add downgrade flag for adb install
Change-Id: I246ffbcfe0981e7f32f80d5a4cd22c3fa6c44648
Diffstat (limited to 'bash_completion')
-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 |