From a51605cedb24d2701d6b347a2bd8c9309832c48e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xose=20P=C3=A9rez?= Date: Tue, 25 May 2021 10:43:57 +0200 Subject: [PATCH] Remove trailing unmatched bracket --- start_common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start_common.sh b/start_common.sh index c9d1610..bee3412 100644 --- a/start_common.sh +++ b/start_common.sh @@ -3,11 +3,11 @@ TTN_STACK_VERSION=${TTN_STACK_VERSION:-2} if [ $TTN_STACK_VERSION -eq 2 ]; then TTN_REGION=${TTN_REGION:-"eu"} TC_URI=${TC_URI:-"wss://lns.${TTN_REGION}.thethings.network:443"} - TC_TRUST=${TC_TRUST:-$(curl --silent "https://letsencrypt.org/certs/trustid-x3-root.pem.txt"))} + TC_TRUST=${TC_TRUST:-$(curl --silent "https://letsencrypt.org/certs/trustid-x3-root.pem.txt")} elif [ $TTN_STACK_VERSION -eq 3 ]; then TTN_REGION=${TTN_REGION:-"eu1"} TC_URI=${TC_URI:-"wss://${TTN_REGION}.cloud.thethings.network:8887"} - TC_TRUST=${TC_TRUST:-$(curl --silent "https://letsencrypt.org/certs/{trustid-x3-root.pem.txt,isrgrootx1.pem}"))} + TC_TRUST=${TC_TRUST:-$(curl --silent "https://letsencrypt.org/certs/{trustid-x3-root.pem.txt,isrgrootx1.pem}")} else echo -e "\033[91mERROR: Wrong TTN_STACK_VERSION value, should be either 2 o 3.\033[0m" balena-idle