Files
ci-emsdk/emsdk.bat
Jukka Jylänki f717c391ed Fix python check.
2013-09-06 21:16:33 +03:00

14 lines
291 B
Batchfile

@echo off
:: Find python from an explicit location relative to the Emscripten SDK.
IF EXIST "%~dp0python\2.7.5.1_32bit\python.exe" (
"%~dp0python\2.7.5.1_32bit\python" "%~dp0\emsdk" %*
GOTO end
)
:: As last resort, access from PATH.
python "%~dp0\emsdk" %*
GOTO end
:end