Bug 1069682 - part 1 - ensure the addon-sdk's JS modules include .html files; r=erikvold

This commit is contained in:
Nathan Froyd
2014-09-19 09:34:15 -04:00
parent d6c13f0518
commit 5b8e332e85
2 changed files with 2 additions and 1 deletions

View File

@@ -48,7 +48,7 @@ class MachCommands(MachCommandBase):
dirs_to_files = {}
for path, dirs, files in os.walk(js_src_dir):
js_files = [f for f in files if f.endswith(('.js', '.jsm'))]
js_files = [f for f in files if f.endswith(('.js', '.jsm', '.html'))]
if not js_files:
continue