git-svn-id: svn+ssh://svnintern.kmrc.de/projects/gentoo/iwm-overlay@13511 cbe59ace-07ea-0310-918e-868702b5370d
		
			
				
	
	
		
			10 lines
		
	
	
		
			285 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			285 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
PYTHON=$(which python2.5)
 | 
						|
 | 
						|
[ -x "${PYTHON}" ] || ( echo "ERROR: Python 2.5 not found"; exit 1)
 | 
						|
[ -f /usr/lib/google_appengine/dev_appserver.py ] || ( echo "ERROR: google_appengine not found in /usr/lib"; exit 1)
 | 
						|
 | 
						|
cd /usr/lib/google_appengine
 | 
						|
"${PYTHON}" dev_appserver.py $@
 |