From 4de3e6d70dc92ea6232f4fc6cd2b70f34e69bb5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20B=C3=B6hnke?= Date: Tue, 22 Aug 2017 20:15:34 +0200 Subject: [PATCH] fix additional space in variable check for emtpyness --- deploy/scp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/scp.sh b/deploy/scp.sh index d270e355..a774bd6d 100644 --- a/deploy/scp.sh +++ b/deploy/scp.sh @@ -117,7 +117,7 @@ scp_deploy() { _SCP_check_params() { # at least one of key, cert or fullchain must be set - if [ -z "$DEPLOY_SCP_KEY_TARGET" ] && [ -z "$DEPLOY_SCP_CERT_TARGET" ] && [ -z "$DEPLOY_SCP_FULLCHAIN_TARGET " ]; then + if [ -z "$DEPLOY_SCP_KEY_TARGET" ] && [ -z "$DEPLOY_SCP_CERT_TARGET" ] && [ -z "$DEPLOY_SCP_FULLCHAIN_TARGET" ]; then DEPLOY_SCP_CA_TARGET="" DEPLOY_SCP_KEY_TARGET="" DEPLOY_SCP_CERT_TARGET=""