aboutsummaryrefslogtreecommitdiff
path: root/emscripten.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-11-17 13:36:55 -0800
committerAlon Zakai <alonzakai@gmail.com>2011-11-17 13:36:55 -0800
commit28cfd3f3b8fb2455222813215933fa03bcdfa1bd (patch)
treebc362db08e29d8a27cbe65f7e2fa5b6bef406a65 /emscripten.py
parentc300de847b2f2d420f4dc416b0f3852f9665303d (diff)
parentc77c200fba4cd0918c8d7cbecb453f772116950b (diff)
Merge pull request #119 from LCID-Fire/stderr_fix
Remove muting or std outputting stderr.
Diffstat (limited to 'emscripten.py')
-rwxr-xr-xemscripten.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/emscripten.py b/emscripten.py
index 69e2d8cb..47a825d8 100755
--- a/emscripten.py
+++ b/emscripten.py
@@ -150,7 +150,7 @@ def emscript(infile, settings, outfile):
s.write(settings)
s.close()
compiler = path_from_root('src', 'compiler.js')
- shared.run_js(shared.COMPILER_ENGINE, compiler, [settings_file, infile], stdout=outfile, stderr=subprocess.STDOUT, cwd=path_from_root('src'))
+ shared.run_js(shared.COMPILER_ENGINE, compiler, [settings_file, infile], stdout=outfile, cwd=path_from_root('src'))
outfile.close()