Commit 5888d6f6 authored by Eric Boren's avatar Eric Boren Committed by Commit Bot

roll-dep: Run gclient.py rather than gclient

gclient calls into update_depot_tools, where gclient.py does not.

Change-Id: Idabf0fd613ee241460fbeb6b897a79b084bbc4e2
Reviewed-on: https://chromium-review.googlesource.com/1000786Reviewed-by: 's avatarAaron Gable <agable@chromium.org>
Commit-Queue: Eric Boren <borenet@chromium.org>
parent da55cdc0
......@@ -71,7 +71,9 @@ def should_show_log(upstream_url):
def get_gclient_root():
return check_output(['gclient', 'root']).strip()
gclient = os.path.join(
os.path.dirname(os.path.abspath(__file__)), 'gclient.py')
return check_output([sys.executable, gclient, 'root']).strip()
def get_deps(root):
......
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