From 3c4336fa199d8aa60ed9b7b4d4ace6ccfa2c48de Mon Sep 17 00:00:00 2001 From: Alex Baker Date: Tue, 26 Jan 2021 18:23:49 -0600 Subject: [PATCH] Remove leftover travis build script --- .wait_for_emulator.sh | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 .wait_for_emulator.sh diff --git a/.wait_for_emulator.sh b/.wait_for_emulator.sh deleted file mode 100755 index 2405dcbc2..000000000 --- a/.wait_for_emulator.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -set +e - -bootanim="" -failcounter=0 -timeout_in_sec=600 # 10 minutes - -until [[ "$bootanim" =~ "stopped" ]]; do - bootanim=`adb -e shell getprop init.svc.bootanim 2>&1 &` - if [[ "$bootanim" =~ "device not found" || "$bootanim" =~ "device offline" - || "$bootanim" =~ "running" || "$bootanim" =~ "error: no emulators found" ]]; then - let "failcounter += 1" - echo "Waiting for emulator to start" - if [[ $failcounter -gt timeout_in_sec ]]; then - echo "Timeout ($timeout_in_sec seconds) reached; failed to start emulator" - exit 1 - fi - fi - sleep 1 -done - -echo "Emulator is ready" -