diff options
author | Holger Levsen <holger@layer-acht.org> | 2012-11-09 15:45:24 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2012-11-09 15:45:24 +0100 |
commit | 22b6aea5af34e1728139cc45b758277583f9fe0b (patch) | |
tree | 89c7964b300c66023850bc52ba9b06585b656663 | |
parent | 14c1455f61cec12a94b270981ec8c746ca2a3991 (diff) | |
download | jenkins.debian.net-22b6aea5af34e1728139cc45b758277583f9fe0b.tar.xz |
fixup webchecks
-rwxr-xr-x | bin/webcheck_url.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/webcheck_url.sh b/bin/webcheck_url.sh index 93007bbe..bb36a0b7 100755 --- a/bin/webcheck_url.sh +++ b/bin/webcheck_url.sh @@ -18,6 +18,6 @@ export http_proxy="http://localhost:3128" PARAMS="-c -f" if [ "$2" != "" ] ; then - PARAMS=$(for i in $2 ; do echo -n " -y $i" ; done) + PARAMS="$PARAMS $(for i in $2 ; do echo -n " -y $i" ; done)" fi webcheck $1 $PARAMS |