From 9910ff5fa17caac7f95a93d16d2dc59eebf64117 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armando=20L=C3=BCscher?= Date: Tue, 25 Oct 2016 14:49:22 +0200 Subject: [PATCH] Allow saved password strings to have special characters. (#334) --- acme.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acme.sh b/acme.sh index 3eccc3c7..a1d19fd6 100755 --- a/acme.sh +++ b/acme.sh @@ -1224,7 +1224,7 @@ _saveaccountconf() { _sckey="$1" _scvalue="$2" if [ "$ACCOUNT_CONF_PATH" ] ; then - _setopt "$ACCOUNT_CONF_PATH" "$_sckey" "=" "\"$_scvalue\"" + _setopt "$ACCOUNT_CONF_PATH" "$_sckey" "=" "'$_scvalue'" else _err "ACCOUNT_CONF_PATH is empty, can not save $_sckey=$_scvalue" fi