From 04e124e0cd98ac01fdf0ebb1a5799e9139a029b7 Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Tue, 27 Aug 2019 18:03:22 +0200 Subject: [PATCH] Makefile: Fix the path to the golint module As reported by the error in the CI build. Also see https://github.com/golang/lint/issues/397 Signed-off-by: Sebastian Schuberth --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7f770a8..f6e7142 100644 --- a/Makefile +++ b/Makefile @@ -8,5 +8,5 @@ clean: find . -name "test-suite-data.json" | xargs rm -f lint: - go get -u github.com/golang/lint/golint + go get -u golang.org/x/lint/golint golint -set_exit_status