From e378b5febc6a9388643dc1cd79bf30b0af071665 Mon Sep 17 00:00:00 2001 From: Raneet Debnath Date: Fri, 25 Nov 2022 15:29:25 +0530 Subject: [PATCH] CI: fix assignment operator --- integration-tests/bor_health.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/bor_health.sh b/integration-tests/bor_health.sh index 020aa25063..0be1d8257f 100644 --- a/integration-tests/bor_health.sh +++ b/integration-tests/bor_health.sh @@ -4,7 +4,7 @@ set -e while true do peers=$(docker exec bor0 bash -c "bor attach /root/.bor/data/bor.ipc -exec 'admin.peers'") - block-$(docker exec bor0 bash -c "bor attach /root/.bor/data/bor.ipc -exec 'eth.blockNumber'") + block=$(docker exec bor0 bash -c "bor attach /root/.bor/data/bor.ipc -exec 'eth.blockNumber'") if [[ -n "$peers" ]] && [[ -n "$block" ]]; then break