diff options
author | Jez Ng <me@jezng.com> | 2013-06-20 16:36:42 -0700 |
---|---|---|
committer | Jez Ng <me@jezng.com> | 2013-06-22 01:23:21 -0700 |
commit | 99fa57e08e92821e1f6f4dd230e80970ad366250 (patch) | |
tree | 1ea12384748884163ea0e4552fbada8508ac30b2 /emcc | |
parent | 5459b3543fdc8eb01806e6fb03b05d19bd2815e9 (diff) |
Make test_debug actually fail when things go wrong.
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1490,7 +1490,7 @@ try: final += '.tr.js' posix = True if not shared.WINDOWS else False logging.debug('applying transform: %s' % js_transform) - execute(shlex.split(js_transform, posix=posix) + [os.path.abspath(final)]) + subprocess.check_call(shlex.split(js_transform, posix=posix) + [os.path.abspath(final)]) if DEBUG: save_intermediate('transformed') js_transform_tempfiles = [final] |