diff --git a/recipe_modules/infra_paths/path_config.py b/recipe_modules/infra_paths/path_config.py index 455a8a877..9d419451d 100644 --- a/recipe_modules/infra_paths/path_config.py +++ b/recipe_modules/infra_paths/path_config.py @@ -14,9 +14,6 @@ def infra_common(c): @CONFIG_CTX(includes=['infra_common']) def infra_buildbot(c): c.base_paths['root'] = c.START_DIR[:-4] - # slave_build is DEPRECATED in favor of start_dir - # TODO(nodir): remove it - c.base_paths['slave_build'] = c.START_DIR c.base_paths['cache'] = c.base_paths['root'] + ( 'build', 'slave', 'cache') c.base_paths['git_cache'] = c.base_paths['root'] + ( @@ -30,9 +27,6 @@ def infra_buildbot(c): @CONFIG_CTX(includes=['infra_common']) def infra_kitchen(c): c.base_paths['root'] = c.START_DIR - # slave_build is DEPRECATED in favor of start_dir - # TODO(nodir): remove it - c.base_paths['slave_build'] = c.START_DIR # TODO(phajdan.jr): have one cache dir, let clients append suffixes. b_dir = c.START_DIR