From 404506c7c1ec7c4e27e2ca86d01f02560e1a424a Mon Sep 17 00:00:00 2001 From: John Olheiser Date: Thu, 6 Apr 2023 13:58:05 -0500 Subject: [PATCH] Remove -v from vulncheck (#23953) We should think about locking this dep, but for now this should get builds going again. (cherry picked from commit 797babbfcbcf845fe12c8659fffa1693ec4708bb) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 28a8fc579c..7d52fceeb4 100644 --- a/Makefile +++ b/Makefile @@ -784,7 +784,7 @@ merge-locales: .PHONY: security-check security-check: - go run $(GOVULNCHECK_PACKAGE) -v ./... + go run $(GOVULNCHECK_PACKAGE) ./... $(EXECUTABLE): $(GO_SOURCES) $(TAGS_PREREQ) CGO_CFLAGS="$(CGO_CFLAGS)" $(GO) build $(GOFLAGS) $(EXTRA_GOFLAGS) -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)' -o $@