darwin: Remove the direct path to python3.9
This allows people to use python3.9 in other places, including a virtual environment inside of the repo
This commit is contained in:
parent
464c2d45f6
commit
2829542177
|
|
@ -8,7 +8,7 @@ MESSAGE_DIRECTOR_IP="127.0.0.1:7199"
|
|||
EVENT_LOGGER_IP="127.0.0.1:7197"
|
||||
DISTRICT_NAME="Toon Valley"
|
||||
|
||||
/usr/local/bin/python3.9 -m toontown.ai.AIStart --base-channel ${BASE_CHANNEL} \
|
||||
python3.9 -m toontown.ai.AIStart --base-channel ${BASE_CHANNEL} \
|
||||
--max-channels ${MAX_CHANNELS} --stateserver ${STATE_SERVER} \
|
||||
--messagedirector-ip ${MESSAGE_DIRECTOR_IP} \
|
||||
--eventlogger-ip ${EVENT_LOGGER_IP} --district-name "$DISTRICT_NAME"
|
||||
|
|
|
|||
|
|
@ -3,4 +3,4 @@ cd ..
|
|||
|
||||
export LOGIN_TOKEN=dev
|
||||
|
||||
/usr/local/bin/python3.9 -m toontown.launcher.QuickStartLauncher
|
||||
python3.9 -m toontown.launcher.QuickStartLauncher
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ MESSAGE_DIRECTOR_IP="127.0.0.1:7199"
|
|||
EVENT_LOGGER_IP="127.0.0.1:7197"
|
||||
BASE_CHANNEL=1000000
|
||||
|
||||
/usr/local/bin/python3.9 -m toontown.uberdog.UDStart --base-channel ${BASE_CHANNEL} \
|
||||
python3.9 -m toontown.uberdog.UDStart --base-channel ${BASE_CHANNEL} \
|
||||
--max-channels ${MAX_CHANNELS} --stateserver ${STATE_SERVER} \
|
||||
--messagedirector-ip ${MESSAGE_DIRECTOR_IP} \
|
||||
--eventlogger-ip ${EVENT_LOGGER_IP}
|
||||
|
|
|
|||
Loading…
Reference in New Issue