Files
Phoenix/b
2015-03-20 12:05:24 -07:00

19 lines
268 B
Bash
Executable File

#!/bin/bash
##set -o xtrace
#PYVER=2.7
#PYVER2=27
PYVER=3.4
PYVER2=34
if [ "$OSTYPE" = "cygwin" ]; then
$TOOLS/python$PYVER2/python.exe -u build.py "$@"
else
PATH=/usr/local/bin:$PATH
PYTHON=`which python$PYVER`
$PYTHON -u build.py "$@"
fi
exit $?