aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/devenv_commands.py
diff options
context:
space:
mode:
authorShing Lyu <shing.lyu@gmail.com>2016-09-09 14:02:47 +0800
committerShing Lyu <shing.lyu@gmail.com>2016-10-17 10:58:52 +0800
commit0cab0501f46a17adefbfb704b571244f013b3221 (patch)
tree9bde6c901c763244385a725d8ebb5ee07520e144 /python/servo/devenv_commands.py
parent4af21e3ae1676f943a9a01688fef854487bcddfc (diff)
downloadservo-0cab0501f46a17adefbfb704b571244f013b3221.tar.gz
servo-0cab0501f46a17adefbfb704b571244f013b3221.zip
Restore the layout trace viewer
Diffstat (limited to 'python/servo/devenv_commands.py')
-rw-r--r--python/servo/devenv_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/devenv_commands.py b/python/servo/devenv_commands.py
index 5a41b8b1b37..8163340c501 100644
--- a/python/servo/devenv_commands.py
+++ b/python/servo/devenv_commands.py
@@ -154,7 +154,7 @@ class MachCommands(CommandBase):
# Absolute paths for all directories to be considered
grep_paths = root_dirs_abs + tests_dirs_abs
return call(
- ["git"] + ["grep"] + params + ['--'] + grep_paths + [':(exclude)*.min.js'],
+ ["git"] + ["grep"] + params + ['--'] + grep_paths + [':(exclude)*.min.js', ':(exclude)*.min.css'],
env=self.build_env())
@Command('fetch',