From b09fdb75c9efe3a1edc9f582531dc4af96085b6e Mon Sep 17 00:00:00 2001 From: Bartek Tofel Date: Tue, 10 Sep 2024 11:51:30 +0200 Subject: [PATCH] add missing $ before variable name (#14379) --- .github/workflows/client-compatibility-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/client-compatibility-tests.yml b/.github/workflows/client-compatibility-tests.yml index e61829c933e..761759193e6 100644 --- a/.github/workflows/client-compatibility-tests.yml +++ b/.github/workflows/client-compatibility-tests.yml @@ -170,7 +170,7 @@ jobs: implementations_arr+=("nethermind") fi new_reth=$(ghlatestreleasechecker "paradigmxyz/reth" $RELEASED_DAYS_AGO) - if [ "new_reth" != "none" ]; then + if [ "$new_reth" != "none" ]; then echo "New reth release found: $new_reth" implementations_arr+=("reth") fi