diff options
author | cyBerta <cyberta@riseup.net> | 2021-01-31 18:56:21 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2021-01-31 18:56:21 +0100 |
commit | f425762e35957e663eeda3e5bea73a1f93ab90dd (patch) | |
tree | 1b82f8a3e9cf76058aeca1a21409761e3fae6294 /scripts/installOnAllEmulators.sh | |
parent | 45d5dcecde2a4af0585346f581aea2ce7884eb5f (diff) |
create scripts to start several emulators for automatted testing
Diffstat (limited to 'scripts/installOnAllEmulators.sh')
-rwxr-xr-x | scripts/installOnAllEmulators.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/installOnAllEmulators.sh b/scripts/installOnAllEmulators.sh new file mode 100755 index 00000000..e0ed4c6a --- /dev/null +++ b/scripts/installOnAllEmulators.sh @@ -0,0 +1,2 @@ +#!/bin/bash +adb devices | grep emulator | cut --output-delimiter ' ' -f1 | xargs -I{} adb -s {} install -r $1 |