summaryrefslogtreecommitdiffstats
path: root/python/mozbuild
diff options
context:
space:
mode:
authorJustOff <Off.Just.Off@gmail.com>2018-06-01 17:39:43 +0300
committerJustOff <Off.Just.Off@gmail.com>2018-06-01 17:39:43 +0300
commitced9c8b9df1f3672e9b987adbfce95cdcdec2e06 (patch)
treeb8a01f2b08ddbd7c3e218579a9edb39d68ec957a /python/mozbuild
parent6a28a5559ea3f17f236f85b0615dd1213562b984 (diff)
downloadUXP-ced9c8b9df1f3672e9b987adbfce95cdcdec2e06.tar
UXP-ced9c8b9df1f3672e9b987adbfce95cdcdec2e06.tar.gz
UXP-ced9c8b9df1f3672e9b987adbfce95cdcdec2e06.tar.lz
UXP-ced9c8b9df1f3672e9b987adbfce95cdcdec2e06.tar.xz
UXP-ced9c8b9df1f3672e9b987adbfce95cdcdec2e06.zip
Refine the file extensions even more
Diffstat (limited to 'python/mozbuild')
-rw-r--r--python/mozbuild/mozbuild/mach_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/mozbuild/mozbuild/mach_commands.py b/python/mozbuild/mozbuild/mach_commands.py
index b8755e260..78d9b40be 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: