mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	
		
			
	
	
		
			13 lines
		
	
	
		
			346 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			13 lines
		
	
	
		
			346 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
|   | #!/bin/bash
 | ||
|  | 
 | ||
|  | set -e | ||
|  | 
 | ||
|  | if [[ -z "${ANDROID_HOME}" ]]; then | ||
|  |     SDKDIR=$PWD/.android-sdk | ||
|  |     export ANDROID_HOME=${SDKDIR} | ||
|  |     export ANDROID_SDK_ROOT=${SDKDIR} | ||
|  | fi | ||
|  | 
 | ||
|  | echo "Killing previous emulators" | ||
|  | ${ANDROID_HOME}/platform-tools/adb devices | grep emulator | cut -f1 | while read line; do ${ANDROID_HOME}/platform-tools/adb -s $line emu kill; done |