From 1cee02e7aeebfd9c13c8c47085a0a14aa909600a Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 26 Aug 2020 11:30:13 +0200 Subject: [PATCH] scripts: remove unused md2man from dev-tools Looks like md2man was never used in the build scripts, but got added in commit dc49f84dcc64940628505390a7be3394e4314482, 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 --- script/setup/install-dev-tools | 2 -- 1 file changed, 2 deletions(-) diff --git a/script/setup/install-dev-tools b/script/setup/install-dev-tools index 9e7012a98..8047bb9d6 100755 --- a/script/setup/install-dev-tools +++ b/script/setup/install-dev-tools @@ -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}"