1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-07 07:56:19 +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"
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"