From a0aa88cb451ed8e1fca2dc5d81b16b2ab4496e14 Mon Sep 17 00:00:00 2001 From: aler9 <46489434+aler9@users.noreply.github.com> Date: Thu, 4 Feb 2021 21:55:00 +0100 Subject: [PATCH] update makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4dfc992c..ae6d5a19 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ BASE_IMAGE = 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) @@ -58,7 +58,7 @@ test-nodocker: lint: docker run --rm -v $(PWD):/app -w /app \ - $(GO_LINT_IMAGE) \ + $(LINT_IMAGE) \ golangci-lint run -v bench: