summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2020-01-15 08:29:33 +0100
committerValentin Rothberg <rothberg@redhat.com>2020-01-15 08:29:33 +0100
commitb6155c1657344b53bf0e99f2a9e116df4f518101 (patch)
treed1b2419a764ac3c0510acbbd966f14d254a8e238 /Makefile
parent1c95e66b20dd7358cc0733c7ef225cd5bb6715e9 (diff)
downloadpodman-b6155c1657344b53bf0e99f2a9e116df4f518101.tar.gz
podman-b6155c1657344b53bf0e99f2a9e116df4f518101.tar.bz2
podman-b6155c1657344b53bf0e99f2a9e116df4f518101.zip
Makefile: remove gometalinter
Remove all references on gometalinter including the target to install it. We are not using it anymore since we have fully migrated to golangci-lint. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 1 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 06b6fd03d..520b853c4 100644
--- a/Makefile
+++ b/Makefile
@@ -481,7 +481,7 @@ uninstall:
GIT_CHECK_EXCLUDE="./vendor:docs/make.bat" $(GOBIN)/git-validation -run DCO,short-subject,dangling-whitespace -range $(EPOCH_TEST_COMMIT)..$(HEAD)
.PHONY: install.tools
-install.tools: .install.gitvalidation .install.gometalinter .install.md2man .install.ginkgo .install.golangci-lint ## Install needed tools
+install.tools: .install.gitvalidation .install.md2man .install.ginkgo .install.golangci-lint ## Install needed tools
define go-get
env GO111MODULE=off \
@@ -498,15 +498,6 @@ endef
$(call go-get,github.com/vbatts/git-validation); \
fi
-.install.gometalinter: .gopathok
- if [ ! -x "$(GOBIN)/gometalinter" ]; then \
- $(call go-get,github.com/alecthomas/gometalinter); \
- cd $(FIRST_GOPATH)/src/github.com/alecthomas/gometalinter; \
- git checkout --detach e8d801238da6f0dfd14078d68f9b53fa50a7eeb5; \
- $(GO) install github.com/alecthomas/gometalinter; \
- $(GOBIN)/gometalinter --install; \
- fi
-
.install.golangci-lint: .gopathok
if [ ! -x "$(GOBIN)/golangci-lint" ]; then \
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(GOBIN)/ v1.18.0; \