Merge "Move downloaded artifact cache from buck-cache to bazel-cache" into stable-2.15

This commit is contained in:
David Ostrovsky 2018-02-07 19:56:19 +00:00 committed by Gerrit Code Review
commit 5201142555
2 changed files with 2 additions and 3 deletions

View File

@ -25,8 +25,7 @@ from util import hash_file, resolve_url
from zipfile import ZipFile, BadZipfile, LargeZipFile
GERRIT_HOME = path.expanduser('~/.gerritcodereview')
# TODO(davido): Rename in bazel-cache
CACHE_DIR = path.join(GERRIT_HOME, 'buck-cache', 'downloaded-artifacts')
CACHE_DIR = path.join(GERRIT_HOME, 'bazel-cache', 'downloaded-artifacts')
LOCAL_PROPERTIES = 'local.properties'

View File

@ -26,7 +26,7 @@ import sys
import bowerutil
CACHE_DIR = os.path.expanduser(os.path.join(
'~', '.gerritcodereview', 'buck-cache', 'downloaded-artifacts'))
'~', '.gerritcodereview', 'bazel-cache', 'downloaded-artifacts'))
def bower_cmd(bower, *args):