From 4aff9948336c4f48f6ef10c28bb05dbf6c6b84a6 Mon Sep 17 00:00:00 2001 From: lauener Date: Fri, 16 Feb 2024 14:26:31 +0100 Subject: [PATCH] Hide golangci install command in logs --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0c8c19c17..4de1ad849 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,8 @@ generate: tidy # Coding style static check. lint: tidy - go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.56.2 - go mod tidy + @go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.56.2 + @go mod tidy golangci-lint run vet: tidy