From dfe6bbbb22379ab9237e75597fd7244e56dd630c Mon Sep 17 00:00:00 2001 From: nodir Date: Fri, 4 Nov 2016 16:21:33 -0700 Subject: [PATCH] swarmbucket: git_cache must be in cwd on swarmbucket, git_cache must be in cwd R=vadimsh@chromium.org, martiniss@chromium.org Review-Url: https://codereview.chromium.org/2473243003 --- recipe_modules/infra_paths/path_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe_modules/infra_paths/path_config.py b/recipe_modules/infra_paths/path_config.py index 4ec1bc791..5ac82af6e 100644 --- a/recipe_modules/infra_paths/path_config.py +++ b/recipe_modules/infra_paths/path_config.py @@ -55,4 +55,4 @@ def infra_kitchen(c): @CONFIG_CTX(includes=['infra_buildbot']) def infra_swarmbucket(c): - c.base_paths['git_cache'] = c.base_paths['root'] + ('git_cache',) + c.base_paths['git_cache'] = c.CURRENT_WORKING_DIR + ('git_cache',)