From b2f84abca2a8f16e594650d554da1f6813ce7ba0 Mon Sep 17 00:00:00 2001 From: Barben360 Date: Wed, 9 Feb 2022 21:12:44 +0100 Subject: [PATCH] Fix possible syntax error (#1802) --- scripts/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run.sh b/scripts/run.sh index a08a4655bd..64856b81a7 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -191,7 +191,7 @@ function updatebw() { KEY_CONNECTOR_ENABLED=$(grep -A3 'enable_key_connector:' $OUTPUT_DIR/config.yml | tail -n1 | awk '{ print $2}') CORE_ID=$(docker-compose ps -q admin) WEB_ID=$(docker-compose ps -q web) - if [ $KEY_CONNECTOR_ENABLED = true ]; + if [ "$KEY_CONNECTOR_ENABLED" = true ]; then KEYCONNECTOR_ID=$(docker-compose ps -q key-connector) fi