From 074d78539653d8e1d433639835f516bef1da6b96 Mon Sep 17 00:00:00 2001 From: Alberto Cavalcante <54247214+albertocavalcante@users.noreply.github.com> Date: Tue, 22 Apr 2025 19:32:47 -0700 Subject: [PATCH] chore(devtools): use curl instead of wget for better compatibility with MacOS --- scripts/devtools.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/devtools.sh b/scripts/devtools.sh index 6fe80caf..782a1fe1 100755 --- a/scripts/devtools.sh +++ b/scripts/devtools.sh @@ -2,4 +2,4 @@ set -ex go mod download golang.org/x/tools@latest curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.62.0 -wget -O- -nv https://raw.githubusercontent.com/securego/gosec/master/install.sh | sh -s +curl -sSfL https://raw.githubusercontent.com/securego/gosec/master/install.sh | sh -s