diff options
author | Holger Levsen <holger@layer-acht.org> | 2012-12-09 17:52:15 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2012-12-09 17:52:15 +0100 |
commit | 95a5640901111b8a2328bd6772d0006a67c140d3 (patch) | |
tree | ffe4a0663fb7b22160c4864b0fea1a8cca7ef208 | |
parent | 611a0bc827ca40f89bd0df55f0b06413c83db86e (diff) | |
download | jenkins.debian.net-95a5640901111b8a2328bd6772d0006a67c140d3.tar.xz |
make curl follow redirects
-rwxr-xr-x | bin/g-i-installation.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh index f5c7ac9d..39753771 100755 --- a/bin/g-i-installation.sh +++ b/bin/g-i-installation.sh @@ -54,7 +54,7 @@ fetch_if_newer() { url="$2" file="$1" - curlopts="" + curlopts="-L" if [ -f $file ] ; then curlopts="-z $file" fi |