Use new-style s3 urls in docker download script

This commit is contained in:
Alex Crichton 2019-05-21 12:20:50 -07:00
parent 0f4b546af3
commit 8d42b87ac0
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ if [ -f "$docker_dir/$image/Dockerfile" ]; then
awk '{print $1}')
s3url="s3://$SCCACHE_BUCKET/docker/$cksum"
url="https://s3-us-west-1.amazonaws.com/$SCCACHE_BUCKET/docker/$cksum"
url="https://$SCCACHE_BUCKET.s3.amazonaws.com/docker/$cksum"
upload="aws s3 cp - $s3url"
echo "Attempting to download $url"