From 78697486af200bbc8cea86094e88a035c2d0095c Mon Sep 17 00:00:00 2001 From: aler9 <46489434+aler9@users.noreply.github.com> Date: Thu, 4 Feb 2021 21:54:46 +0100 Subject: [PATCH] update makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fd618a23..0fb93e37 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ BASE_IMAGE = amd64/golang:1.15-alpine3.12 -GO_LINT_IMAGE = golangci/golangci-lint:v1.33.0 +LINT_IMAGE = golangci/golangci-lint:v1.33.0 .PHONY: $(shell ls) @@ -63,5 +63,5 @@ test-nodocker: test-examples test-pkg test-root lint: docker run --rm -v $(PWD):/app -w /app \ - $(GO_LINT_IMAGE) \ + $(LINT_IMAGE) \ golangci-lint run -v