From 0d0221c312ca4c405cdf5c03a0a1e2a7fc742456 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jukka=20Jyl=C3=A4nki?= Date: Wed, 11 Sep 2013 21:30:21 +0300 Subject: [PATCH] Don't alter state of echo in emsdk.bat. --- emsdk.bat | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/emsdk.bat b/emsdk.bat index 430a2ea..ee02a68 100644 --- a/emsdk.bat +++ b/emsdk.bat @@ -1,14 +1,11 @@ -@echo off - :: 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 +@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 +@call python "%~dp0\emsdk" %* +@GOTO end :end -@echo on