diff options
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 12b36ef..46ed208 100644 --- a/bash_completion/adb.bash +++ b/bash_completion/adb.bash @@ -66,7 +66,7 @@ _adb() { COMPREPLY=( $(compgen -W "$OPTIONS $COMMAND" -- "$cur") ) ;; OPT_SERIAL_ARG) - local devices=$(command adb devices '2>' /dev/null | grep -v "List of devices" | awk '{ print $1 }') + local devices=$(command adb devices 2> /dev/null | grep -v "List of devices" | awk '{ print $1 }') COMPREPLY=( $(compgen -W "${devices}" -- ${cur}) ) ;; COMMAND) |