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

Unified Diff: scripts/slave/recipe_modules/gsutil/api.py

Issue 1919193002: build: roll infra_paths changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 8 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
Index: scripts/slave/recipe_modules/gsutil/api.py
diff --git a/scripts/slave/recipe_modules/gsutil/api.py b/scripts/slave/recipe_modules/gsutil/api.py
index e65ba6ec588d1949eed4dfeebe5a28906af48c15..9e4f8b7ae940d5efff5a2e201c4001cbd8e83d61 100644
--- a/scripts/slave/recipe_modules/gsutil/api.py
+++ b/scripts/slave/recipe_modules/gsutil/api.py
@@ -28,7 +28,7 @@ class GSUtilApi(recipe_api.RecipeApi):
name = (t for t in cmd if not t.startswith('-')).next()
full_name = 'gsutil ' + name
- gsutil_path = self.m.path['depot_tools'].join('gsutil.py')
+ gsutil_path = self.m.infra_paths['depot_tools'].join('gsutil.py')
cmd_prefix = []
if use_retry_wrapper:
@@ -152,7 +152,7 @@ class GSUtilApi(recipe_api.RecipeApi):
return self.m.python(name,
gsutil_download_path,
args,
- cwd=self.m.path['slave_build'])
+ cwd=self.m.infra_paths['slave_build'])
def _generate_metadata_args(self, metadata):
result = []

Powered by Google App Engine
This is Rietveld 408576698