We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa760c8 commit 2cfd897Copy full SHA for 2cfd897
script/bootstrap
@@ -3,7 +3,9 @@
3
set -exuo pipefail
4
5
# Install golangci-lint
6
-curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b "${GOPATH}/bin" v1.38.0
+golangci_lint_version='v1.38.0'
7
+golangci_install_script="https://raw.githubusercontent.com/golangci/golangci-lint/${golangci_lint_version}/install.sh"
8
+curl -sfL "${golangci_install_script}" | sh -s -- -b "$GOPATH/bin" "${golangci_lint_version}"
9
10
# Install goreleaser.
11
go install github.com/goreleaser/[email protected]
0 commit comments