From 55b4cf35c6c28b5fea0c9b45e85b8af6c6c66133 Mon Sep 17 00:00:00 2001 From: RussellLuo Date: Wed, 25 Mar 2026 14:34:00 +0800 Subject: [PATCH] fix makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c9abf51da..0b09cf7f7 100644 --- a/Makefile +++ b/Makefile @@ -242,11 +242,11 @@ fmt: ## lint: Run linters lint: - $(GOLANGCI_LINT) run --build-tags $(GO_BUILD_TAGS) + @$(GOLANGCI_LINT) run --build-tags $(GO_BUILD_TAGS) ## fix: Fix linting issues fix: - $(GOLANGCI_LINT) run --fix --build-tags $(GO_BUILD_TAGS) + @$(GOLANGCI_LINT) run --fix --build-tags $(GO_BUILD_TAGS) ## deps: Download dependencies deps: