Merge pull request #3229 from thaJeztah/remove_md2man

scripts: remove unused md2man from dev-tools
This commit is contained in:
João Pereira 2021-02-06 16:02:20 +00:00 committed by GitHub
commit d7476f67c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,6 @@
#!/usr/bin/env bash
GOLANGCI_LINT_VERSION="v1.27.0"
GO_MD2MAN_VERSION="v1.0.10"
#
# Install developer tools to $GOBIN (or $GOPATH/bin if unset)
@ -14,4 +13,3 @@ 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}"
go get "github.com/cpuguy83/go-md2man@${GO_MD2MAN_VERSION}"