| Index: recipe_engine/recipe_api.py
|
| diff --git a/recipe_engine/recipe_api.py b/recipe_engine/recipe_api.py
|
| index d2c1d8b81b11bda4c222115e30095cf7593ec392..f0226221501b123e267e93b65b0574474bf37533 100644
|
| --- a/recipe_engine/recipe_api.py
|
| +++ b/recipe_engine/recipe_api.py
|
| @@ -118,6 +118,7 @@ class AggregatedStepFailure(StepFailure):
|
|
|
| _FUNCTION_REGISTRY = {
|
| 'aggregated_result': {'combine': lambda a, b: b},
|
| + 'cwd': {'combine': lambda a, b: b},
|
| 'env': {'combine': lambda a, b: dict(a, **b)},
|
| 'name': {'combine': lambda a, b: '%s.%s' % (a, b)},
|
| 'nest_level': {'combine': lambda a, b: a + b},
|
|
|