Skip to content

Commit

Permalink
add missing $ before variable name (#14379)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tofel committed Sep 10, 2024
1 parent 915b01b commit b09fdb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/client-compatibility-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b09fdb7

Please sign in to comment.