Index: tools/gypv8sh.py |
diff --git a/tools/gypv8sh.py b/tools/gypv8sh.py |
index cb98f4cb6b88101451e0857fc776d9f2ba21fc1e..8245f5b276ccce7a8746e592f48602a17c227e63 100755 |
--- a/tools/gypv8sh.py |
+++ b/tools/gypv8sh.py |
@@ -44,7 +44,8 @@ def main (): |
print cmd |
if not opts.impotent: |
try: |
- p = subprocess.Popen(cmd, stdout=subprocess.PIPE, bufsize=0) |
+ p = subprocess.Popen( |
+ cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, bufsize=0) |
out, err = p.communicate() |
if p.returncode: |
raise Exception('Failed to run d8', out, err) |