2018-08-02 00:37:21 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2020-06-26 17:27:53 +02:00
|
|
|
GOLANGCI_LINT_VERSION="v1.27.0"
|
|
|
|
|
2018-08-02 00:37:21 +02:00
|
|
|
#
|
|
|
|
# Install developer tools to $GOBIN (or $GOPATH/bin if unset)
|
|
|
|
#
|
|
|
|
set -eu -o pipefail
|
|
|
|
|
2020-06-26 17:27:53 +02:00
|
|
|
# Enable Go modules
|
|
|
|
export GO111MODULE=on
|
|
|
|
|
2020-01-29 15:53:03 +01:00
|
|
|
# prevent updating go.mod of the project
|
|
|
|
cd /tmp
|
2020-06-26 17:27:53 +02:00
|
|
|
go get "github.com/golangci/golangci-lint/cmd/golangci-lint@${GOLANGCI_LINT_VERSION}"
|