Index: tools/gypv8sh.py |
diff --git a/tools/gypv8sh.py b/tools/gypv8sh.py |
index 918368cbbfc991799f27e9be25c43b92888db4f2..eafc72661a5422f5d03b7f3f439052e963d095c1 100755 |
--- a/tools/gypv8sh.py |
+++ b/tools/gypv8sh.py |
@@ -45,6 +45,8 @@ def main (): |
shutil.copyfile(inputfile, jsoutfile) |
except Exception, ex: |
if os.path.exists(cxxoutfile): |
+ # The contents of the output file will include the error message. |
+ print open(cxxoutfile).read() |
os.remove(cxxoutfile) |
if os.path.exists(jsoutfile): |
os.remove(jsoutfile) |