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

Unified Diff: gclient.py

Issue 1789713004: Log the location where we start to search .gclient for (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 9 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: gclient.py
diff --git a/gclient.py b/gclient.py
index 7ba378a7d2fabf20c13296c9269ce4fd46df8514..e854a49b0afdce6d3f7715e16fc895992597d820 100755
--- a/gclient.py
+++ b/gclient.py
@@ -1378,6 +1378,8 @@ been automagically updated. The previous version is available at %s.old.
client = GClient('.', options)
client.SetConfig(options.spec)
else:
+ print ('Looking for %s starting from %s', options.config_filename,
+ os.getcwd())
path = gclient_utils.FindGclientRoot(os.getcwd(), options.config_filename)
Paweł Hajdan Jr. 2016/03/11 22:26:13 While you're here, why not instrument FindGclientR
Sergiy Byelozyorov 2016/03/11 22:29:00 Not sure what to instrument inside FindGclientRoot
if not path:
return None
« 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