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