Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
neilpang committed Jun 28, 2018
1 parent 5b3f915 commit 05dea7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/cpanel_uapi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 05dea7b

Please sign in to comment.