Commit 8fe4d8cb authored by Edward Lemur's avatar Edward Lemur Committed by Commit Bot

gclient: Actually fix roll-dep.

Bug: 839925
Change-Id: I5cb6655309d6aa8dada7e6bd245d859593fb055f
Reviewed-on: https://chromium-review.googlesource.com/1064809
Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org>
Reviewed-by: 's avatarAaron Gable <agable@chromium.org>
parent b496b6a0
...@@ -7,3 +7,6 @@ the Build and Test Yeti. ...@@ -7,3 +7,6 @@ the Build and Test Yeti.
As the CI needs of the browser grew, Batty, the Build and Test Yeti, got As the CI needs of the browser grew, Batty, the Build and Test Yeti, got
a new friend: a new friend:
The End.
...@@ -225,7 +225,7 @@ def main(): ...@@ -225,7 +225,7 @@ def main():
# First gather all the information without modifying anything, except for a # First gather all the information without modifying anything, except for a
# git fetch. # git fetch.
deps_path, deps_content = get_deps(current_dir) deps_path, deps_content = get_deps(current_dir)
gclient_dict = gclient_eval.Exec(deps_content, True, True, deps_path) gclient_dict = gclient_eval.Exec(deps_content, True, deps_path)
is_relative = gclient_dict.get('use_relative_paths', False) is_relative = gclient_dict.get('use_relative_paths', False)
root_dir = current_dir if is_relative else gclient_root root_dir = current_dir if is_relative else gclient_root
rolls = {} rolls = {}
......
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