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

Unified Diff: recipe_modules/bot_update/api.py

Issue 2346973003: bot_update: ensure correct depot_tools checkout is used. (Closed)
Patch Set: +expectations. Created 4 years, 3 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 | recipe_modules/bot_update/example.expected/basic.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_modules/bot_update/api.py
diff --git a/recipe_modules/bot_update/api.py b/recipe_modules/bot_update/api.py
index f1f31bd1c3458a65b4c62d3d0d11e8f20314cc03..540ba8db35b1bdc4ca4ba0e9092b4b239565f89e 100644
--- a/recipe_modules/bot_update/api.py
+++ b/recipe_modules/bot_update/api.py
@@ -34,7 +34,7 @@ class BotUpdateApi(recipe_api.RecipeApi):
kwargs.setdefault('env', {})
kwargs['env'].setdefault('PATH', '%(PATH)s')
kwargs['env']['PATH'] = self.m.path.pathsep.join([
- kwargs['env']['PATH'], str(self._module.PACKAGE_REPO_ROOT)])
+ str(self._module.PACKAGE_REPO_ROOT), kwargs['env']['PATH']])
iannucci 2016/09/16 07:25:59 aarrrrggghhhh :'( This explains so much :(
return self.m.python(name, bot_update_path, cmd, **kwargs)
@property
« no previous file with comments | « no previous file | recipe_modules/bot_update/example.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698