12 lines
		
	
	
	
		
			139 B
			
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			139 B
			
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
MODE=Release
 | 
						|
if [ ! -z $1 ]; then
 | 
						|
  MODE=$1
 | 
						|
fi
 | 
						|
 | 
						|
cd "$(dirname "$0")/.."
 | 
						|
 | 
						|
xcodebuild -configuration ${MODE} -target atom
 |