From 9f94a1938bc3722bb7182d728631d22ac946de16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauris=20Buk=C5=A1is-Haberkorns?= Date: Fri, 12 Oct 2018 22:49:25 +0300 Subject: [PATCH] Fix golint to new URL --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4eb5873e42147..28f52196ef4ab 100644 --- a/Makefile +++ b/Makefile @@ -129,7 +129,7 @@ errcheck: .PHONY: lint lint: @hash golint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ - $(GO) get -u github.com/golang/lint/golint; \ + $(GO) get -u golang.org/x/lint/golint; \ fi for PKG in $(PACKAGES); do golint -set_exit_status $$PKG || exit 1; done;