From 1a34e64c651fb0b24d05e03ef870600573abce0e Mon Sep 17 00:00:00 2001 From: max furman Date: Tue, 21 Apr 2020 09:59:54 -0700 Subject: [PATCH] Try old method of installing golang linter ... * Method from docs is broken in travis. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1e26e552..91ceb344 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ all: build test lint bootstra%: # Using a released version of golangci-lint to take into account custom replacements in their go.mod - $Q curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.24.0 + $Q GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.24.0 .PHONY: bootstra%