Commit 05dea7b2 authored by neilpang's avatar neilpang
Browse files

fix warning

parent 5b3f915d
...@@ -33,8 +33,8 @@ cpanel_uapi_deploy() { ...@@ -33,8 +33,8 @@ cpanel_uapi_deploy() {
return 1 return 1
fi fi
# read cert and key files and urlencode both # read cert and key files and urlencode both
_cert=$(cat "$_ccert" | _url_encode) _cert=$(_url_encode < "$_ccert")
_key=$(cat "$_ckey" | _url_encode) _key=$(_url_encode < "$_ckey")
_debug _cert "$_cert" _debug _cert "$_cert"
_debug _key "$_key" _debug _key "$_key"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment