From 9a44e522f4dfce23197738b2bc406d179c0dc460 Mon Sep 17 00:00:00 2001 From: Michael McLoughlin Date: Wed, 27 Oct 2021 23:07:44 -0700 Subject: [PATCH] script: switch to install.sh from golangci-lint repo (#203) The goreleaser script has been deprecated: goreleaser/godownloader#207 --- script/bootstrap | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/script/bootstrap b/script/bootstrap index 6a7c7ab9..801343cd 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -5,7 +5,7 @@ go install ./internal/cmd/asmvet # Install golangci-lint golangci_lint_version='v1.23.6' -curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $GOPATH/bin ${golangci_lint_version} +curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $GOPATH/bin ${golangci_lint_version} # Install tools. tools=( @@ -23,4 +23,3 @@ tools=( ) go install -modfile=script/tools.mod "${tools[@]}" -