Commit 910466bb authored by vadimsh's avatar vadimsh Committed by Commit bot

Do not suggest to replace .DEPS.git with DEPS.

Both are valid since depot_tools r291592.

TBR=agable@chromium.org
NOTRY=true
BUG=406934

Review URL: https://codereview.chromium.org/488313003

Cr-Commit-Position: refs/heads/master@{#291630}
parent ef392e8b
...@@ -385,7 +385,9 @@ def check_gclient_config(conf): ...@@ -385,7 +385,9 @@ def check_gclient_config(conf):
'managed': conf['gclient_managed'] or False, 'managed': conf['gclient_managed'] or False,
'url': conf['gclient_url'], '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: if current == good:
return return
# Show big warning if url or deps_file is wrong. # Show big warning if url or deps_file is wrong.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment