Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

curl replaced nc #1799

Merged
merged 1 commit into from
Aug 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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