11 lines
		
	
	
		
			163 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			163 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash -e
 | |
| 
 | |
| [[ "$1" == "--sudo" ]] && prefix="sudo " && shift
 | |
| [ "$DEBUG" ] && debug="-x"
 | |
| 
 | |
| kickstart compile "$@"
 | |
| (
 | |
| cd compile
 | |
| $prefix bash $debug install.sh
 | |
| )
 |