fix warning

This commit is contained in:
neilpang 2018-06-28 20:34:29 +08:00
parent 5b3f915d90
commit 05dea7b22a
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ cpanel_uapi_deploy() {
return 1
fi
# read cert and key files and urlencode both
_cert=$(cat "$_ccert" | _url_encode)
_key=$(cat "$_ckey" | _url_encode)
_cert=$(_url_encode < "$_ccert")
_key=$(_url_encode < "$_ckey")
_debug _cert "$_cert"
_debug _key "$_key"