mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-12-15 17:20:07 +01:00
16 lines
229 B
Bash
Executable File
16 lines
229 B
Bash
Executable File
#!/bin/bash
|
|
|
|
##set -o xtrace
|
|
|
|
if [ "$OSTYPE" = "cygwin" ]; then
|
|
PYTHON=`which python.exe`
|
|
echo $PYTHON
|
|
$PYTHON -u build.py "$@"
|
|
else
|
|
PYTHON=`which python`
|
|
echo $PYTHON
|
|
$PYTHON -u build.py "$@"
|
|
fi
|
|
|
|
exit $?
|