mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-29 08:34:37 +01:00
only honor one install-set option -- fixes multiple installs.
This commit is contained in:
parent
2434d85684
commit
43e8205fd8
1 changed files with 2 additions and 2 deletions
|
@ -15,10 +15,10 @@ DEVICES="$(adb devices | grep 'device$' | awk '{print $1}')"
|
|||
while [ $# -ge 1 ]; do
|
||||
case $1 in
|
||||
-e)
|
||||
DEVICES="$DEVICES $(adb devices | grep '^emulator' | awk '{print $1}')"
|
||||
DEVICES="$(adb devices | grep '^emulator' | awk '{print $1}')"
|
||||
;;
|
||||
-d)
|
||||
DEVICES="$DEVICES $(adb devices | grep -v emulator | grep 'device$' | awk '{print $1}')"
|
||||
DEVICES="$(adb devices | grep -v emulator | grep 'device$' | awk '{print $1}')"
|
||||
;;
|
||||
-p)
|
||||
[ $# -gt 1 ] || usage "-p requires an argument"
|
||||
|
|
Loading…
Add table
Reference in a new issue