From 0f36bb113061c1944c20f430eafed1429984bd61 Mon Sep 17 00:00:00 2001 From: BlueAnanas Date: Thu, 3 Mar 2016 00:18:19 +0100 Subject: [PATCH] Replaced $@ by quoted "$@" An $a without quotes is not putting quotes around expanded characters. The quotes around the server reload command get lost in the process. --- le.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/le.sh b/le.sh index c1a83c9f..caa123f2 100755 --- a/le.sh +++ b/le.sh @@ -1284,5 +1284,5 @@ createCSR: if [ -z "$1" ] ; then showhelp else - $@ + "$@" fi