From e9429bb642d5101dc06829ed68afe984114d2b26 Mon Sep 17 00:00:00 2001 From: Rodrigo Campos Date: Thu, 5 Nov 2020 19:25:38 +0100 Subject: [PATCH] Makefile: Fix golint URL used in go get Otherwise, commands like "make install.tools" fail with: $ make install.tools go get -u github.com/golang/lint/golint code in directory //github.com/golang/lint/golint expects import "golang.org/x/lint/golint" The github repository says this URL should be used for go get. After this patch, make install.tools works just fine. Signed-off-by: Rodrigo Campos --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 16051b33a..c03f781ec 100644 --- a/Makefile +++ b/Makefile @@ -83,7 +83,7 @@ install.tools: .install.golint .install.gitvalidation # golint does not even build for