summaryrefslogtreecommitdiff
path: root/ci/run.sh
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-09-15 15:56:12 -0700
committerAlex Crichton <alex@alexcrichton.com>2017-09-16 09:13:07 -0700
commit050d8c8b0f3b4a4b0cf0451516c1c410a2c7cb80 (patch)
treea110b8bb19f71c293af28c66b478d561cbf39e1a /ci/run.sh
parentd5236b0b91200531aa80b612851d4965ca445179 (diff)
downloadrust-libc-050d8c8b0f3b4a4b0cf0451516c1c410a2c7cb80.tar.gz
Update s3 download locations
Diffstat (limited to 'ci/run.sh')
-rwxr-xr-xci/run.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/run.sh b/ci/run.sh
index a4d0a97132..51a2c68714 100755
--- a/ci/run.sh
+++ b/ci/run.sh
@@ -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