From 31ba4de21de74ef9953c5e84dff570fe14d20731 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Tue, 19 Feb 2013 16:13:49 +0100 Subject: [PATCH] url-lib/url-lib.sh: remove bashism remove the forgotten bashism "+=" --- modules.d/45url-lib/url-lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules.d/45url-lib/url-lib.sh b/modules.d/45url-lib/url-lib.sh index 1f8218d..4a3d56d 100755 --- a/modules.d/45url-lib/url-lib.sh +++ b/modules.d/45url-lib/url-lib.sh @@ -58,7 +58,7 @@ curl_args="--location --retry 3 --fail --show-error" getargbool 0 rd.noverifyssl && curl_args="$curl_args --insecure" proxy=$(getarg proxy=) -[ -n "$proxy" ] && curl_args+="$curl_args --proxy $proxy" +[ -n "$proxy" ] && curl_args="$curl_args --proxy $proxy" curl_fetch_url() { local url="$1" outloc="$2" -- 2.7.4