mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
10 lines
203 B
Bash
Executable file
10 lines
203 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
if [[ $PERF_BROWSERS =~ .*Android.* || $E2E_BROWSERS =~ .*Android.* ]]
|
|
then
|
|
adb usb
|
|
adb wait-for-device devices
|
|
adb reverse tcp:8001 tcp:8001
|
|
adb reverse tcp:8002 tcp:8002
|
|
fi
|