From dd22f519be39c71c6e1437c8c36c797c74e9fc20 Mon Sep 17 00:00:00 2001 From: Nate Brennand Date: Thu, 11 Oct 2018 12:39:00 -0700 Subject: [PATCH] update golang.mk --- golang.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/golang.mk b/golang.mk index b539763..6035eac 100644 --- a/golang.mk +++ b/golang.mk @@ -1,7 +1,7 @@ # This is the default Clever Golang Makefile. # It is stored in the dev-handbook repo, github.com/Clever/dev-handbook # Please do not alter this file directly. -GOLANG_MK_VERSION := 0.3.8 +GOLANG_MK_VERSION := 0.4.0 SHELL := /bin/bash SYSTEM := $(shell uname -a | cut -d" " -f1 | tr '[:upper:]' '[:lower:]') @@ -82,7 +82,7 @@ endif # Golint is a tool for linting Golang code for common errors. GOLINT := $(GOPATH)/bin/golint $(GOLINT): - go get github.com/golang/lint/golint + go get golang.org/x/lint/golint # golang-fmt-deps requires the FGT tool for checking output golang-fmt-deps: $(FGT)