From bf41cde57c81396baab6150841a6076d11a7e21d Mon Sep 17 00:00:00 2001 From: "David A. Velasco" Date: Tue, 22 Apr 2014 11:13:09 +0200 Subject: [PATCH] Reduced output while waiting for emulator starts --- wait_for_emulator.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"