Skip to content

Commit

Permalink
Fix ensure_kind.sh filename
Browse files Browse the repository at this point in the history
In ensure_kind.sh, the downloaded binary file's name is
kind-linux-amd64, so we should run `sudo install kind-linux-amd64`
instead of `sudo install kind`.

Signed-off-by: Huy Mai <[email protected]>
  • Loading branch information
mquhuy committed Jan 28, 2025
1 parent cdbd3f9 commit a2cdf64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/e2e/ensure_kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ verify_kind_version()
if [[ "${OSTYPE}" == "linux-gnu" ]]; then
echo "kind not found, installing"
curl -LO "https://kind.sigs.k8s.io/dl/${MINIMUM_KIND_VERSION}/kind-linux-amd64"
sudo install kind "${USR_LOCAL_BIN}/kind"
sudo install kind-linux-amd64 "${USR_LOCAL_BIN}/kind"
else
echo "Missing required binary in path: kind"
return 2
Expand Down

0 comments on commit a2cdf64

Please sign in to comment.