From 52024d8b482a1016021692f2fb6866988472981b Mon Sep 17 00:00:00 2001 From: "Timm, Christopher" Date: Sat, 13 Oct 2018 17:48:19 -0500 Subject: [PATCH] build: Fix import for golint The import path for golint has changed Fixes #3388 --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 48d932d43..952a30643 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -19,7 +19,7 @@ RUN go clean -i net && \ fi; \ go get -tags netgo \ github.com/fzipp/gocyclo \ - github.com/golang/lint/golint \ + golang.org/x/lint/golint \ github.com/kisielk/errcheck \ github.com/fatih/hclfmt \ github.com/mjibson/esc \