diff options
author | Alex Crichton <alex@alexcrichton.com> | 2017-09-15 15:56:12 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2017-09-16 09:13:07 -0700 |
commit | 050d8c8b0f3b4a4b0cf0451516c1c410a2c7cb80 (patch) | |
tree | a110b8bb19f71c293af28c66b478d561cbf39e1a /ci/run.sh | |
parent | d5236b0b91200531aa80b612851d4965ca445179 (diff) | |
download | rust-libc-050d8c8b0f3b4a4b0cf0451516c1c410a2c7cb80.tar.gz |
Update s3 download locations
Diffstat (limited to 'ci/run.sh')
-rwxr-xr-x | ci/run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21,14 +21,14 @@ if [ "$QEMU" != "" ]; then # image is .gz : download and uncompress it qemufile=$(echo ${QEMU%.gz} | sed 's/\//__/g') if [ ! -f $tmpdir/$qemufile ]; then - curl https://s3.amazonaws.com/rust-lang-ci/libc/$QEMU | \ + curl https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/$QEMU | \ gunzip -d > $tmpdir/$qemufile fi else # plain qcow2 image: just download it qemufile=$(echo ${QEMU} | sed 's/\//__/g') if [ ! -f $tmpdir/$qemufile ]; then - curl https://s3.amazonaws.com/rust-lang-ci/libc/$QEMU \ + curl https://s3-us-west-1.amazonaws.com/rust-lang-ci2/libc/$QEMU \ > $tmpdir/$qemufile fi fi |