1cee02e7ae
Looks like md2man was never used in the build scripts, but got added in
commit dc49f84dcc
, possibly due to the
script being copy/pasted from another project that does use it.
While we may want to generate man-pages at some point in future, it
looks like it's safe to remove for now.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
15 lines
319 B
Bash
Executable file
15 lines
319 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
GOLANGCI_LINT_VERSION="v1.27.0"
|
|
|
|
#
|
|
# Install developer tools to $GOBIN (or $GOPATH/bin if unset)
|
|
#
|
|
set -eu -o pipefail
|
|
|
|
# Enable Go modules
|
|
export GO111MODULE=on
|
|
|
|
# prevent updating go.mod of the project
|
|
cd /tmp
|
|
go get "github.com/golangci/golangci-lint/cmd/golangci-lint@${GOLANGCI_LINT_VERSION}"
|