aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSiva Velusamy <vsiva@google.com>2014-06-11 17:57:48 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-06-10 22:15:14 +0000
commit052983f1ace04029ea43de4727ea12f496d6dd89 (patch)
tree8ebd259d96abc7820378ff04892060adba0cf931
parent343a78fae064d666b02416b56039b86c554fa615 (diff)
parent31c667a772ef6ba491232daf658195d5fcdcb86c (diff)
downloadsdk-052983f1ace04029ea43de4727ea12f496d6dd89.zip
sdk-052983f1ace04029ea43de4727ea12f496d6dd89.tar.gz
sdk-052983f1ace04029ea43de4727ea12f496d6dd89.tar.bz2
Merge "bash completion: add downgrade flag for adb install" into idea133
-rw-r--r--bash_completion/adb.bash2
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