Browse Source

Fix possible syntax error (#1802)

pull/1858/head
Barben360 4 years ago committed by GitHub
parent
commit
b2f84abca2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      scripts/run.sh

2
scripts/run.sh

@ -191,7 +191,7 @@ function updatebw() { @@ -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

Loading…
Cancel
Save