From 9c545059ae43396c49b35c1870496ec58406b495 Mon Sep 17 00:00:00 2001
From: neilpang <neil@neilpang.com>
Date: Thu, 28 Jun 2018 22:21:22 +0800
Subject: [PATCH] fix warning

---
 deploy/cpanel_uapi.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/deploy/cpanel_uapi.sh b/deploy/cpanel_uapi.sh
index 01cb94ee..44844f79 100644
--- a/deploy/cpanel_uapi.sh
+++ b/deploy/cpanel_uapi.sh
@@ -33,8 +33,8 @@ cpanel_uapi_deploy() {
     return 1
   fi
   # read cert and key files and urlencode both
-  _cert=$(_url_encode < "$_ccert")
-  _key=$(_url_encode < "$_ckey")
+  _cert=$(_url_encode <"$_ccert")
+  _key=$(_url_encode <"$_ckey")
 
   _debug _cert "$_cert"
   _debug _key "$_key"