mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 14:46:42 +00:00
CI: fix assignment operator
This commit is contained in:
parent
5df25bd360
commit
e378b5febc
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ set -e
|
||||||
while true
|
while true
|
||||||
do
|
do
|
||||||
peers=$(docker exec bor0 bash -c "bor attach /root/.bor/data/bor.ipc -exec 'admin.peers'")
|
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
|
if [[ -n "$peers" ]] && [[ -n "$block" ]]; then
|
||||||
break
|
break
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue