From c42259ccce86488c46659ad65fba1ae276ab2cf5 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 f3bf5aedea1..98f4569544f 100644 --- a/Makefile +++ b/Makefile @@ -368,7 +368,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