From d79c921ecac6c8aefd55f6dbd0162019c74b418a Mon Sep 17 00:00:00 2001 From: Bartek Tofel Date: Fri, 21 Jun 2024 10:04:47 +0200 Subject: [PATCH] add missing $ sign for some variables (#13645) --- .github/workflows/client-compatibility-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/client-compatibility-tests.yml b/.github/workflows/client-compatibility-tests.yml index d8a4709fb61..75553412725 100644 --- a/.github/workflows/client-compatibility-tests.yml +++ b/.github/workflows/client-compatibility-tests.yml @@ -141,17 +141,17 @@ jobs: implementations_arr+=("geth") fi new_besu=$(ghlatestreleasechecker "hyperledger/besu" $RELEASED_DAYS_AGO) - if [ "new_besu" != "none" ]; then + if [ "$new_besu" != "none" ]; then echo "New besu release found: $new_besu" implementations_arr+=("besu") fi new_erigon=$(ghlatestreleasechecker "ledgerwatch/erigon" $RELEASED_DAYS_AGO) - if [ "new_erigon" != "none" ]; then + if [ "$new_erigon" != "none" ]; then echo "New erigon release found: $new_erigon" implementations_arr+=("erigon") fi new_nethermind=$(ghlatestreleasechecker "nethermindEth/nethermind" $RELEASED_DAYS_AGO) - if [ "new_nethermind" != "none" ]; then + if [ "$new_nethermind" != "none" ]; then echo "New nethermind release found: $new_nethermind" implementations_arr+=("nethermind") fi