From cb242ae89c2953426764229e78407b354d3ce6e3 Mon Sep 17 00:00:00 2001 From: Andreas Fleig Date: Tue, 20 Jun 2023 19:43:13 +0200 Subject: [PATCH] hack/install_golint.sh: allow installation on linux/arm64 (#2585) --- hack/install_golint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/hack/install_golint.sh b/hack/install_golint.sh index 64e00fb48..74fa2107e 100755 --- a/hack/install_golint.sh +++ b/hack/install_golint.sh @@ -68,6 +68,7 @@ is_supported_platform() { windows/amd64) found=0 ;; windows/386) found=0 ;; linux/amd64) found=0 ;; + linux/arm64) found=0 ;; linux/386) found=0 ;; linux/ppc64le) found=0 ;; linux/s390x) found=0 ;;