Chromium Code Reviews| Index: scripts/slave/recipe_modules/auto_bisect/bisector.py |
| diff --git a/scripts/slave/recipe_modules/auto_bisect/bisector.py b/scripts/slave/recipe_modules/auto_bisect/bisector.py |
| index 5cf20e35770a7b87b667cc6e24c1b003c2952bf9..4abe97cf9815e38d436aaf31a4e342c25c3971b0 100644 |
| --- a/scripts/slave/recipe_modules/auto_bisect/bisector.py |
| +++ b/scripts/slave/recipe_modules/auto_bisect/bisector.py |
| @@ -348,7 +348,7 @@ class Bisector(object): |
| patched_contents = re.sub(deps_item_regexp, new_commit_hash, |
| original_contents) |
| - cwd = self.api.m.path['slave_build'].join( |
| + cwd = (self.api.working_dir or self.api.m.path['slave_build']).join( |
|
sullivan
2016/08/09 19:27:38
Please add a comment explaining why there are two
|
| depot_config.DEPOT_DEPS_NAME[base_revision.depot_name]['src']) |
| deps_file = 'DEPS' |
| # This is to support backward compatibility on android-chrome because |