diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-28 11:28:48 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-06-28 11:28:48 -0700 |
commit | d887e70b1001d6d543335089ad138f4794cccb3f (patch) | |
tree | 01821bc6373a5981d5cf61114a780508dec8beb7 /emcc | |
parent | ef12fb6c3a1f94b620fc71362d42d7e207fe10d6 (diff) |
improve error message
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1639,7 +1639,7 @@ try: match = re.match('.*?<script[^>]*>{{{ SCRIPT_CODE }}}</script>', shell, re.DOTALL) if match is None: - raise RuntimeError('Could not find script insertion point') + raise RuntimeError('''Could not find script insertion point - make sure you have <script type='text/javascript'>{{{ SCRIPT_CODE }}}</script> in your HTML file (with no newlines)''') generate_source_map(target, match.group().count('\n')) html.write(shell.replace('{{{ SCRIPT_CODE }}}', open(final).read())) else: |