Index: tools/check_git_config.py |
diff --git a/tools/check_git_config.py b/tools/check_git_config.py |
index 51b13017882f645b5426f6d9c439b7d21ec87cd6..2b5fe58dafd29bdf7bba465b83547fcc6ad760cb 100755 |
--- a/tools/check_git_config.py |
+++ b/tools/check_git_config.py |
@@ -385,7 +385,9 @@ def check_gclient_config(conf): |
'managed': conf['gclient_managed'] or False, |
'url': conf['gclient_url'], |
} |
- good = GOOD_GCLIENT_SOLUTION |
+ # After depot_tools r291592 both DEPS and .DEPS.git are valid. |
+ good = GOOD_GCLIENT_SOLUTION.copy() |
+ good['deps_file'] = current['deps_file'] |
if current == good: |
return |
# Show big warning if url or deps_file is wrong. |