mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1004 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1004 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
set -e
 | 
						|
set +x
 | 
						|
 | 
						|
trap "cd $(pwd -P)" EXIT
 | 
						|
cd "$(dirname "$0")"
 | 
						|
 | 
						|
 | 
						|
if [[ ($1 == '--help') || ($1 == '-h') ]]; then
 | 
						|
  echo "usage: clean.sh [firefox|webkit|firefox-beta]"
 | 
						|
  echo
 | 
						|
  exit 0
 | 
						|
fi
 | 
						|
 | 
						|
if [[ $# == 0 ]]; then
 | 
						|
  echo "missing browser: 'firefox' or 'webkit'"
 | 
						|
  echo "try './clean.sh --help' for more information"
 | 
						|
  exit 1
 | 
						|
fi
 | 
						|
 | 
						|
CMD="$1"
 | 
						|
shift
 | 
						|
if [[ ("$CMD" == "firefox") || ("$CMD" == "firefox/") || ("$CMD" == "ff") ]]; then
 | 
						|
  bash ./firefox/clean.sh "$@"
 | 
						|
elif [[ ("$CMD" == "firefox-beta") || ("$CMD" == "ff-beta") ]]; then
 | 
						|
  bash ./firefox-beta/clean.sh "$@"
 | 
						|
elif [[ ("$CMD" == "webkit") || ("$CMD" == "webkit/") || ("$CMD" == "wk") ]]; then
 | 
						|
  bash ./webkit/clean.sh "$@"
 | 
						|
elif [[ ("$CMD" == "chromium") || ("$CMD" == "chromium/") || ("$CMD" == "cr") ]]; then
 | 
						|
  bash ./chromium/clean.sh "$@"
 | 
						|
elif [[ ("$CMD" == "winldd") ]]; then
 | 
						|
  bash ./winldd/clean.sh "$@"
 | 
						|
elif [[ ("$CMD" == "ffmpeg") ]]; then
 | 
						|
  bash ./ffmpeg/clean.sh "$@"
 | 
						|
else
 | 
						|
  echo ERROR: unknown browser to build - "$CMD"
 | 
						|
  exit 1
 | 
						|
fi
 | 
						|
 |