From 31c667a772ef6ba491232daf658195d5fcdcb86c Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Wed, 11 Jun 2014 08:46:57 -0700 Subject: bash completion: add downgrade flag for adb install Change-Id: I246ffbcfe0981e7f32f80d5a4cd22c3fa6c44648 --- bash_completion/adb.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.1