| Index: PRESUBMIT.py
|
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py
|
| index 6d19a4e57408d711318a34fcf6b151d6fb66c526..040972e8da2db9517af43921b2032166b652402b 100644
|
| --- a/PRESUBMIT.py
|
| +++ b/PRESUBMIT.py
|
| @@ -198,8 +198,8 @@ def _CommonChecks(input_api, output_api):
|
|
|
| def _SkipTreeCheck(input_api, output_api):
|
| """Check the env var whether we want to skip tree check.
|
| - Only skip if src/version.cc has been updated."""
|
| - src_version = 'src/version.cc'
|
| + Only skip if include/v8-version.h has been updated."""
|
| + src_version = 'include/v8-version.h'
|
| FilterFile = lambda file: file.LocalPath() == src_version
|
| if not input_api.AffectedSourceFiles(
|
| lambda file: file.LocalPath() == src_version):
|
|
|