Index: PRESUBMIT.py |
diff --git a/PRESUBMIT.py b/PRESUBMIT.py |
index b5aefd372716fd0336a305b5d7cfcefdb2b22f90..cd5baaad74e20f1f79cd2ff7970fafbf66c616f3 100644 |
--- a/PRESUBMIT.py |
+++ b/PRESUBMIT.py |
@@ -522,6 +522,8 @@ def _CheckUnwantedDependencies(input_api, output_api): |
def _CheckFilePermissions(input_api, output_api): |
"""Check that all files have their permissions properly set.""" |
+ if input_api.platform == 'win32': |
+ return [] |
args = [sys.executable, 'tools/checkperms/checkperms.py', '--root', |
input_api.change.RepositoryRoot()] |
for f in input_api.AffectedFiles(): |