From c80e6b1abc6bce875c9b3e4e948f5b4365af9ef7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 3 May 2022 15:37:57 +0000 Subject: [PATCH] deploy_core.sh: fix syntax error --- scripts/deploy_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy_core.sh b/scripts/deploy_core.sh index f02b539b..2d2403f7 100755 --- a/scripts/deploy_core.sh +++ b/scripts/deploy_core.sh @@ -11,7 +11,7 @@ if [ -z "${MASTER_ACCOUNT_ID}" ]; then exit 1 fi -if [ -z "${FOUNDATION_ACCOUNT_ID}"]; then +if [[ -z "${FOUNDATION_ACCOUNT_ID}" ]]; then echo "FOUNDATION_ACCOUNT_ID is required, e.g. \`export FOUNDATION_ACCOUNT_ID=foundation.near\`" fi