From 6db7369b6fccd66459efff41477d33b6d50cf446 Mon Sep 17 00:00:00 2001 From: houfangdong Date: Wed, 24 Feb 2021 17:34:35 +0800 Subject: [PATCH] helm2 remove mipps64le Signed-off-by: houfangdong --- scripts/get | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/get b/scripts/get index db65952d1..8588eea8c 100755 --- a/scripts/get +++ b/scripts/get @@ -61,7 +61,7 @@ runAsRoot() { # verifySupported checks that the os/arch combination is supported for # binary builds. verifySupported() { - local supported="darwin-amd64\nlinux-386\nlinux-amd64\nlinux-arm\nlinux-arm64\nlinux-ppc64le\nlinux-mips64le\nwindows-amd64" + local supported="darwin-amd64\nlinux-386\nlinux-amd64\nlinux-arm\nlinux-arm64\nlinux-ppc64le\nwindows-amd64" if ! echo "${supported}" | grep -q "${OS}-${ARCH}"; then echo "No prebuilt binary for ${OS}-${ARCH}." echo "To build from source, go to https://github.com/helm/helm"