Index: recipe_modules/gclient/config.py |
diff --git a/recipe_modules/gclient/config.py b/recipe_modules/gclient/config.py |
index b8152734b11bf7d14fdc6d71af65103a2719b4d7..c300edd506d54e52808063ac576d6ba3c322bcbe 100644 |
--- a/recipe_modules/gclient/config.py |
+++ b/recipe_modules/gclient/config.py |
@@ -14,7 +14,7 @@ def BaseConfig(USE_MIRROR=True, GIT_MODE=False, CACHE_DIR=None, |
PATCH_PROJECT=None, BUILDSPEC_VERSION=None, |
**_kwargs): |
deps = '.DEPS.git' if GIT_MODE else 'DEPS' |
- cache_dir = str(CACHE_DIR) if GIT_MODE and CACHE_DIR else None |
+ cache_dir = str(CACHE_DIR) if CACHE_DIR else None |
szager1
2016/03/08 02:24:43
If I'm understanding this right, this is the actua
iannucci
2016/03/08 04:09:40
It will modify it at the base of the config tree:
|
return ConfigGroup( |
solutions = ConfigList( |
lambda: ConfigGroup( |