mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-07-21 12:41:10 +02:00
Plus some other changes to start using using the "wx." prefix on names in the docs. (More are still needed but this is a start.
16 lines
241 B
Bash
Executable File
16 lines
241 B
Bash
Executable File
#!/bin/bash
|
|
|
|
##set -o xtrace
|
|
|
|
if [ "$OSTYPE" = "cygwin" ]; then
|
|
PYTHON=`which python.exe`
|
|
echo $PYTHON
|
|
$PYTHON -u build.py --dev "$@"
|
|
else
|
|
PYTHON=`which python`
|
|
echo $PYTHON
|
|
$PYTHON -u build.py --dev "$@"
|
|
fi
|
|
|
|
exit $?
|