From daf35abca92b6ba9076a2d7b9ee543232a4c5648 Mon Sep 17 00:00:00 2001 From: Vadim Shtayura Date: Fri, 22 Aug 2014 19:08:53 -0700 Subject: [PATCH] Check that 'DEPS' is used in gclient solution (not '.DEPS.git'). R=iannucci@chromium.org BUG=406661 Review URL: https://codereview.chromium.org/493753003 Cr-Commit-Position: refs/heads/master@{#291564} --- tools/check_git_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/check_git_config.py b/tools/check_git_config.py index 23498e9a873e32..576fbbf4ef8e66 100755 --- a/tools/check_git_config.py +++ b/tools/check_git_config.py @@ -60,7 +60,7 @@ # Git-compatible gclient solution. GOOD_GCLIENT_SOLUTION = { 'name': 'src', - 'deps_file': '.DEPS.git', + 'deps_file': 'DEPS', 'managed': False, 'url': 'https://chromium.googlesource.com/chromium/src.git', }