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

Unified Diff: recipe_modules/step/api.py

Issue 1906323003: recipe engine: extract infra-specific paths out of the engine (Closed) Base URL: https://github.com/luci/recipes-py.git@master
Patch Set: tmp 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
« no previous file with comments | « recipe_modules/shutil/example.expected/basic.json ('k') | recipe_modules/step/example.expected/basic.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_modules/step/api.py
diff --git a/recipe_modules/step/api.py b/recipe_modules/step/api.py
index e2f0b5d39b968a6d582f88152bf2745c71b4ef50..f98c0fd100cb3e2da4c991a1a77e8fd71db04e97 100644
--- a/recipe_modules/step/api.py
+++ b/recipe_modules/step/api.py
@@ -131,7 +131,6 @@ class StepApi(recipe_api.RecipeApiPlain):
name = compositor.get_with_context('name', name)
kwargs['env'] = compositor.get_with_context('env', kwargs.get('env', {}))
kwargs['step_nest_level'] = compositor.get_with_context('nest_level', 0)
- kwargs.setdefault('cwd', self.m.path['slave_build'])
# Disambiguate repeated names
step_count = self._step_names.setdefault(name, 0) + 1
« no previous file with comments | « recipe_modules/shutil/example.expected/basic.json ('k') | recipe_modules/step/example.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698