diff options
author | Anders F Björklund <anders.f.bjorklund@gmail.com> | 2021-09-28 18:49:13 +0200 |
---|---|---|
committer | Anders F Björklund <anders.f.bjorklund@gmail.com> | 2021-09-28 18:50:33 +0200 |
commit | 60824c6130e6092599d5e3e7d647f2ceb909f313 (patch) | |
tree | 6ac541421628b381c344dc36af958bb20fbc02ce /Makefile | |
parent | 14acec94b7f86ae329018e1e56fd111ff58bf057 (diff) | |
download | podman-60824c6130e6092599d5e3e7d647f2ceb909f313.tar.gz podman-60824c6130e6092599d5e3e7d647f2ceb909f313.tar.bz2 podman-60824c6130e6092599d5e3e7d647f2ceb909f313.zip |
Fix contributor make targets on Ubuntu and Debian
It was trying to run a bash script with sh
[NO TESTS NEEDED] This changes "make lint"
Signed-off-by: Anders F Björklund <anders.f.bjorklund@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |