CI: fix missing ;

This commit is contained in:
Raneet Debnath 2022-11-25 14:50:18 +05:30
parent c686660fe5
commit 5df25bd360

View file

@ -6,7 +6,7 @@ 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'")
if [[ -n "$peers" ]] && [[ -n "$block" ]] then
if [[ -n "$peers" ]] && [[ -n "$block" ]]; then
break
fi
done