summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2012-12-09 17:57:16 +0100
committerHolger Levsen <holger@layer-acht.org>2012-12-09 17:57:16 +0100
commit5ba5e108f3e85480112fb8a253e26a08d1c9dc78 (patch)
treeb9d394aca4a2a05ad3167d1657425c5b63f8638e /bin
parent13796374a677493e3d36958db4895b83dceacaed (diff)
downloadjenkins.debian.net-5ba5e108f3e85480112fb8a253e26a08d1c9dc78.tar.xz
fix fetch_if_newer
Diffstat (limited to 'bin')
-rwxr-xr-xbin/g-i-installation.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh
index 39753771..b69cb45d 100755
--- a/bin/g-i-installation.sh
+++ b/bin/g-i-installation.sh
@@ -56,7 +56,7 @@ fetch_if_newer() {
curlopts="-L"
if [ -f $file ] ; then
- curlopts="-z $file"
+ curlopts="$curlopts -z $file"
fi
curl $curlopts -o $file $url
}