summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2015-05-02 11:55:50 +1000
committerJason Zaugg <jzaugg@gmail.com>2015-05-02 11:55:50 +1000
commitc75547f342e7795e9cd7d23d5d6c4c44c179d21b (patch)
tree65b79896d25b70c4bd9a4ea688791fda0ca052c1 /tools
parenteb41712a87ca630ad4f39d2d8809c68b86cb2cdb (diff)
downloadscala-c75547f342e7795e9cd7d23d5d6c4c44c179d21b.tar.gz
scala-c75547f342e7795e9cd7d23d5d6c4c44c179d21b.tar.bz2
scala-c75547f342e7795e9cd7d23d5d6c4c44c179d21b.zip
Follow HTTP redirects when downloading bootstrap binaries
After a recent change to the repository that hosts these JARs, we now get a HTTP redirect to the new destination. We need to explicitly instruct curl to follow this.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/binary-repo-lib.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binary-repo-lib.sh b/tools/binary-repo-lib.sh
index 437c0a0c08..84245ca54e 100755
--- a/tools/binary-repo-lib.sh
+++ b/tools/binary-repo-lib.sh
@@ -56,7 +56,7 @@ curlDownload() {
if [[ "$OSTYPE" == *Cygwin* || "$OSTYPE" == *cygwin* ]]; then
jar=$(cygpath -m $1)
fi
- http_code=$(curl --write-out '%{http_code}' --silent --fail --output "$jar" "$url")
+ http_code=$(curl --write-out '%{http_code}' --silent --fail -L --output "$jar" "$url")
if (( $? != 0 )); then
echo "Error downloading $jar: response code: $http_code"
echo "$url"