diff options
-rwxr-xr-x | emcc | 2 | ||||
-rw-r--r-- | src/shell.html | 2 |
2 files changed, 2 insertions, 2 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: diff --git a/src/shell.html b/src/shell.html index 00765271..22bc9de9 100644 --- a/src/shell.html +++ b/src/shell.html @@ -86,7 +86,7 @@ } }; Module.setStatus('Downloading...'); - </script> + </script> <script type='text/javascript'>{{{ SCRIPT_CODE }}}</script> </body> </html> |