mirror of https://github.com/Nezreka/SoulSync.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
355 B
17 lines
355 B
#!/bin/sh
|
|
# Compatibility wrapper for the Python launcher.
|
|
set -e
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
if command -v python3 >/dev/null 2>&1; then
|
|
exec python3 "$SCRIPT_DIR/dev.py" "$@"
|
|
fi
|
|
|
|
if command -v python >/dev/null 2>&1; then
|
|
exec python "$SCRIPT_DIR/dev.py" "$@"
|
|
fi
|
|
|
|
echo "Python is required to run the SoulSync dev launcher."
|
|
exit 1
|