mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Don't lint subdirectories of virtual manifest paths.
This commit is contained in:
parent
9ff7de6a44
commit
8d6fda6ca5
1 changed files with 1 additions and 1 deletions
|
@ -489,7 +489,7 @@ def check_manifest_dirs(config_file, print_text=True):
|
|||
p = parser.parse(lines)
|
||||
paths = rec_parse(wpt_path("web-platform-tests"), p)
|
||||
for idx, path in enumerate(paths):
|
||||
if path.endswith("_mozilla") or path.endswith("_webgl"):
|
||||
if '_mozilla' in path or '_webgl' in path:
|
||||
continue
|
||||
if not os.path.isdir(path):
|
||||
yield(config_file, idx + 1, "Path in manifest was not found: {}".format(path))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue