mirror of
				https://github.com/MinimalBible/MinimalBible-Legacy
				synced 2025-11-04 02:10:30 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			369 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			369 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
bootanim=""
 | 
						|
failcounter=0
 | 
						|
until [[ "$bootanim" =~ "stopped" ]]; do
 | 
						|
   bootanim=`adb -e shell getprop init.svc.bootanim 2>&1`
 | 
						|
   echo "$bootanim"
 | 
						|
   if [[ "$bootanim" =~ "not found" ]]; then
 | 
						|
      let "failcounter += 1"
 | 
						|
      if [[ $failcounter -gt 3 ]]; then
 | 
						|
        echo "Failed to start emulator"
 | 
						|
        exit 1
 | 
						|
      fi
 | 
						|
   fi
 | 
						|
   sleep 1
 | 
						|
done
 | 
						|
echo "Done" |