2018-08-01 22:37:21 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
#
|
|
|
|
# Install developer tools to $GOBIN (or $GOPATH/bin if unset)
|
|
|
|
#
|
|
|
|
set -eu -o pipefail
|
|
|
|
|
2020-01-29 14:53:03 +00:00
|
|
|
# prevent updating go.mod of the project
|
|
|
|
cd /tmp
|
2019-10-09 12:02:21 +00:00
|
|
|
go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
|
2018-08-01 22:37:21 +00:00
|
|
|
go get -u github.com/cpuguy83/go-md2man
|