From 60824c6130e6092599d5e3e7d647f2ceb909f313 Mon Sep 17 00:00:00 2001 From: Anders F Björklund Date: Tue, 28 Sep 2021 18:49:13 +0200 Subject: Fix contributor make targets on Ubuntu and Debian MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It was trying to run a bash script with sh [NO TESTS NEEDED] This changes "make lint" Signed-off-by: Anders F Björklund --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ef65b74c2..590675d25 100644 --- a/Makefile +++ b/Makefile @@ -811,7 +811,7 @@ install.tools: .install.goimports .install.gitvalidation .install.md2man .instal .PHONY: .install.golangci-lint .install.golangci-lint: .gopathok - VERSION=1.36.0 GOBIN=$(GOBIN) sh ./hack/install_golangci.sh + VERSION=1.36.0 GOBIN=$(GOBIN) ./hack/install_golangci.sh .PHONY: .install.bats .install.bats: .gopathok -- cgit v1.2.3-54-g00ecf