From f09e7ca764fc14e5702be5d4aa30f8efcd6903f7 Mon Sep 17 00:00:00 2001 From: Andreas Auernhammer Date: Thu, 11 Oct 2018 23:58:44 +0200 Subject: [PATCH] fix travis CI build (#6620) This commit fixes the Travis CI build by correcting the golint import path --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index eb7a73cc1..1d0048ef5 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ checks: @(env bash $(PWD)/buildscripts/checkgopath.sh) getdeps: - @echo "Installing golint" && go get -u github.com/golang/lint/golint + @echo "Installing golint" && go get -u golang.org/x/lint/golint @echo "Installing gocyclo" && go get -u github.com/fzipp/gocyclo @echo "Installing deadcode" && go get -u github.com/remyoudompheng/go-misc/deadcode @echo "Installing misspell" && go get -u github.com/client9/misspell/cmd/misspell