Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Unified Diff: tools/check_git_config.py

Issue 499013002: Do not freak out if 'deps_file' is not specified. (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/check_git_config.py
diff --git a/tools/check_git_config.py b/tools/check_git_config.py
index 576fbbf4ef8e66d2a7a685e65ecba6200a5d438a..51b13017882f645b5426f6d9c439b7d21ec87cd6 100755
--- a/tools/check_git_config.py
+++ b/tools/check_git_config.py
@@ -381,7 +381,7 @@ def check_gclient_config(conf):
return
current = {
'name': 'src',
- 'deps_file': conf['gclient_deps'],
+ 'deps_file': conf['gclient_deps'] or 'DEPS',
'managed': conf['gclient_managed'] or False,
'url': conf['gclient_url'],
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698