summaryrefslogtreecommitdiffstats
path: root/tools/check_git_config.py
diff options
context:
space:
mode:
authorVadim Shtayura <vadimsh@chromium.org>2014-08-22 19:08:53 -0700
committerVadim Shtayura <vadimsh@chromium.org>2014-08-23 02:27:48 +0000
commitdaf35abca92b6ba9076a2d7b9ee543232a4c5648 (patch)
tree62358bf2f5d785fededf7b6b84a3c8faeed517c1 /tools/check_git_config.py
parent381fcbaa3958af348dacec369900d3c69ab00565 (diff)
downloadchromium_src-daf35abca92b6ba9076a2d7b9ee543232a4c5648.zip
chromium_src-daf35abca92b6ba9076a2d7b9ee543232a4c5648.tar.gz
chromium_src-daf35abca92b6ba9076a2d7b9ee543232a4c5648.tar.bz2
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}
Diffstat (limited to 'tools/check_git_config.py')
-rwxr-xr-xtools/check_git_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/check_git_config.py b/tools/check_git_config.py
index 23498e9..576fbbf 100755
--- a/tools/check_git_config.py
+++ b/tools/check_git_config.py
@@ -60,7 +60,7 @@ TEST_REPO_URL = 'https://chromium.googlesource.com/a/playground/access_test'
# 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',
}