Skip to content

Commit

Permalink
Fix comment in cluster script (curl replaced nc) (#1799)
Browse files Browse the repository at this point in the history
  • Loading branch information
criadoperez committed Aug 10, 2023
1 parent 761bc22 commit 10e268b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/cluster
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ if [[ "$1" == "polybft" ]] && ! command -v jq >/dev/null 2>&1; then
dp_error_flag=1
fi

# Check if nc is installed
# Check if curl is installed
if [[ "$1" == "polybft" ]] && ! command -v curl >/dev/null 2>&1; then
echo "curl is not installed."
echo "Manual installation instructions: Visit https://everything.curl.dev/get/ for more information."
dp_error_flag=1
fi

Expand Down

0 comments on commit 10e268b

Please sign in to comment.