Files
ci-emsdk/emsdk.bat
2013-09-11 21:30:21 +03:00

12 lines
293 B
Batchfile

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