Files
ci-emsdk/emsdk.bat

14 lines
291 B
Batchfile
Raw Normal View History

2013-09-05 12:23:53 +03:00
@echo off
:: Find python from an explicit location relative to the Emscripten SDK.
2013-09-06 21:16:33 +03:00
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.
2013-09-05 12:23:53 +03:00
python "%~dp0\emsdk" %*
GOTO end
:end