mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	
		
			
	
	
		
			14 lines
		
	
	
		
			227 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			14 lines
		
	
	
		
			227 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| 
								 | 
							
								#!/bin/bash
							 | 
						||
| 
								 | 
							
								set -e
							 | 
						||
| 
								 | 
							
								set +x
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								trap "cd $(pwd -P)" EXIT
							 | 
						||
| 
								 | 
							
								cd "$(dirname $0)"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								if [[ "$(uname)" == MINGW* ]]; then
							 | 
						||
| 
								 | 
							
								  /c/Windows/System32/cmd.exe "/c buildwin.bat"
							 | 
						||
| 
								 | 
							
								else
							 | 
						||
| 
								 | 
							
								  echo "ERROR: cannot upload on this platform!" 1>&2
							 | 
						||
| 
								 | 
							
								  exit 1;
							 | 
						||
| 
								 | 
							
								fi
							 |