diff options
author | JustOff <Off.Just.Off@gmail.com> | 2018-06-01 17:39:43 +0300 |
---|---|---|
committer | JustOff <Off.Just.Off@gmail.com> | 2018-06-01 17:39:43 +0300 |
commit | ced9c8b9df1f3672e9b987adbfce95cdcdec2e06 (patch) | |
tree | b8a01f2b08ddbd7c3e218579a9edb39d68ec957a | |
parent | 6a28a5559ea3f17f236f85b0615dd1213562b984 (diff) | |
download | uxp-ced9c8b9df1f3672e9b987adbfce95cdcdec2e06.tar.gz |
Refine the file extensions even more
-rw-r--r-- | python/mozbuild/mozbuild/mach_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/mozbuild/mozbuild/mach_commands.py b/python/mozbuild/mozbuild/mach_commands.py index b8755e2605..78d9b40be5 100644 --- a/python/mozbuild/mozbuild/mach_commands.py +++ b/python/mozbuild/mozbuild/mach_commands.py @@ -544,7 +544,7 @@ class Build(MachCommandBase): # Check if there are any unpreprocessed files in '@MOZ_OBJDIR@/dist/bin' # See python/mozbuild/mozbuild/preprocessor.py#L293-L309 for the list of directives grepcmd = 'grep -E -r "^(#|%)(define|el|endif|error|expand|filter|if|include|literal|undef|unfilter)" '\ - + '--include=\*.{css,dtd,h\*,js\*,x\*,manifest,properties,rdf} '\ + + '--include=\*.{css,dtd,html,js,jsm,xhtml,xml,xul,manifest,properties,rdf} '\ + self.topobjdir + '/dist/bin | grep -v ".css:#"' grepresult = subprocess.Popen(grepcmd, stdout=subprocess.PIPE, shell=True).communicate()[0] if grepresult: |