1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-07 16:06:08 +00:00

Reduced output while waiting for emulator starts

This commit is contained in:
David A. Velasco 2014-04-22 11:13:09 +02:00
parent d253daa1a8
commit bf41cde57c

View File

@ -8,12 +8,12 @@ until [[ "$bootanim" =~ "stopped" ]]; do
echo "($checkcounter) $bootanim" echo "($checkcounter) $bootanim"
if [[ "$bootanim" =~ "not found" ]]; then if [[ "$bootanim" =~ "not found" ]]; then
let "failcounter += 1" let "failcounter += 1"
if [[ $failcounter -gt 300 ]]; then if [[ $failcounter -gt 30 ]]; then
echo "Failed to start emulator" echo "Failed to start emulator"
exit 1 exit 1
fi fi
fi fi
let "checkcounter += 1" let "checkcounter += 1"
sleep 1 sleep 10
done done
echo "Done" echo "Done"