Skip to content

Commit e9429bb

Browse files
committed
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 /<path>/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 <[email protected]>
1 parent e6143ca commit e9429bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ install.tools: .install.golint .install.gitvalidation
8383
# golint does not even build for <go1.7
8484
.install.golint:
8585
ifeq ($(call ALLOWED_GO_VERSION,1.7,$(HOST_GOLANG_VERSION)),true)
86-
go get -u github.com/golang/lint/golint
86+
go get -u golang.org/x/lint/golint
8787
endif
8888

8989
.install.gitvalidation:

0 commit comments

Comments
 (0)