Fix Windows lookup for Python 3 (#439)

This commit is contained in:
juj
2020-02-13 22:22:17 +02:00
committed by GitHub
parent 50df5a2983
commit 5892e95b60

View File

@@ -1,4 +1,9 @@
:: Find python from an explicit location relative to the Emscripten SDK.
@IF EXIST "%~dp0python\3.7.4_64bit\python.exe" (
@SET EMSDK_PY="%~dp0python\3.7.4_64bit\python.exe"
@GOTO end
)
@IF EXIST "%~dp0python\2.7.13.1_64bit\python-2.7.13.amd64\python.exe" (
@SET EMSDK_PY="%~dp0python\2.7.13.1_64bit\python-2.7.13.amd64\python.exe"
@GOTO end