aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/assets
diff options
context:
space:
mode:
authorGravatar borenet <borenet@chromium.org>2016-09-08 06:55:59 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-09-08 06:55:59 -0700
commit2172d55eb5c76d0e9f15cf7faa72014c8f49209b (patch)
treee652a16f66b69a00e44463af6f96e4e962569a61 /infra/bots/assets
parent34ffb342f53cbc1f5951cd175ecc134e21ff0e20 (diff)
Asset management: Download from GS store instead of CIPD
This avoids strange CIPD symlink/permissions issues BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2321623003 Review-Url: https://codereview.chromium.org/2321623003
Diffstat (limited to 'infra/bots/assets')
-rw-r--r--infra/bots/assets/asset_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/bots/assets/asset_utils.py b/infra/bots/assets/asset_utils.py
index 27d6b85de7..8a1404fc56 100644
--- a/infra/bots/assets/asset_utils.py
+++ b/infra/bots/assets/asset_utils.py
@@ -220,7 +220,7 @@ class MultiStore(object):
self._gs.upload(name, version, target_dir)
def download(self, name, version, target_dir):
- self._cipd.download(name, version, target_dir)
+ self._gs.download(name, version, target_dir)
def delete_contents(self, name):
self._cipd.delete_contents(name)