diff --git a/wait_for_emulator.sh b/wait_for_emulator.sh index 45b6e596..7f6443c7 100644 --- a/wait_for_emulator.sh +++ b/wait_for_emulator.sh @@ -8,12 +8,12 @@ until [[ "$bootanim" =~ "stopped" ]]; do echo "($checkcounter) $bootanim" if [[ "$bootanim" =~ "not found" ]]; then let "failcounter += 1" - if [[ $failcounter -gt 300 ]]; then + if [[ $failcounter -gt 30 ]]; then echo "Failed to start emulator" exit 1 fi fi let "checkcounter += 1" - sleep 1 + sleep 10 done echo "Done"