From bbe0cf7415e122c1f6072e36b9dad2bdf0d1c27e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Wed, 21 Jan 2026 12:21:52 +0100 Subject: [PATCH] fix(makefile): Improve performance of make lint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Oliver Gondža --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f9b9bc914..d5b6e8bd6 100644 --- a/Makefile +++ b/Makefile @@ -369,7 +369,7 @@ gosec: go_sec .PHONY: lint lint: golangci_lint $(GOLANGCI_LINT) --version - GOMAXPROCS=2 $(GOLANGCI_LINT) run --fix --verbose --timeout 300s + $(GOLANGCI_LINT) run --fix --verbose --timeout 300s GO_SEC = $(shell pwd)/bin/gosec