mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Add missing path to the path length error.
Partial cherry-pick of <https://github.com/w3c/wpt-tools/pull/136>.
This commit is contained in:
parent
9a1f976142
commit
645732c650
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ def all_git_paths(repo_root):
|
||||||
|
|
||||||
def check_path_length(repo_root, path):
|
def check_path_length(repo_root, path):
|
||||||
if len(path) + 1 > 150:
|
if len(path) + 1 > 150:
|
||||||
return [("PATH LENGTH", "/%s longer than maximum path length (%d > 150)" % (path, len(path) + 1), None)]
|
return [("PATH LENGTH", "/%s longer than maximum path length (%d > 150)" % (path, len(path) + 1), path, None)]
|
||||||
return []
|
return []
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue