We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e27735c commit e46dc73Copy full SHA for e46dc73
tools/build.py
@@ -119,7 +119,7 @@ def language_filenames(src_path, languages):
119
Resolves dependencies and returns the list of actual language filenames
120
'''
121
lang_path = os.path.join(src_path, 'languages')
122
- filenames = [os.path.join(lang_path, f) for f in os.listdir(lang_path)]
+ filenames = [os.path.join(lang_path, f) for f in os.listdir(lang_path) if f.endswith('.js')]
123
headers = [parse_header(f) for f in filenames]
124
infos = [(h, f) for h, f in zip(headers, filenames) if h]
125
0 commit comments