From a2cdf64804e09bb025da7990f71c49970e49ba20 Mon Sep 17 00:00:00 2001 From: Huy Mai Date: Tue, 28 Jan 2025 08:38:03 +0000 Subject: [PATCH] Fix ensure_kind.sh filename 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 --- hack/e2e/ensure_kind.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/e2e/ensure_kind.sh b/hack/e2e/ensure_kind.sh index ed6af17b27..fc9a9bf8a2 100755 --- a/hack/e2e/ensure_kind.sh +++ b/hack/e2e/ensure_kind.sh @@ -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