mirror of https://github.com/axmolengine/axmol.git
22 lines
414 B
Bash
Executable File
22 lines
414 B
Bash
Executable File
#!/bin/bash -l
|
|
|
|
COCOS_CONSOLE_BIN_DIRECTORY=$(dirname "$0")
|
|
COCOS_CONSOLE_BIN_DIRECTORY=$(cd "$COCOS_CONSOLE_BIN_DIRECTORY" && pwd -P)
|
|
|
|
|
|
if hash python2 2>/dev/null; then
|
|
PYTHON=python2
|
|
else
|
|
if hash python 2>/dev/null; then
|
|
VERSION="python --version"
|
|
PYTHON=python
|
|
else
|
|
echo "Python 2+ required."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
|
|
$PYTHON "$COCOS_CONSOLE_BIN_DIRECTORY/cocos.py" "$@"
|
|
|