fix makefile

This commit is contained in:
RussellLuo 2026-03-25 14:34:00 +08:00
parent fbab00c608
commit 55b4cf35c6

View file

@ -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: