Index: tools/gypv8sh.py |
diff --git a/tools/gypv8sh.py b/tools/gypv8sh.py |
index 7141f06eb9477b5a40afd51fe9153e8d563f37f1..5c93e51bf717d579f8390a690c4d7b6fde10f296 100755 |
--- a/tools/gypv8sh.py |
+++ b/tools/gypv8sh.py |
@@ -49,6 +49,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) |