From 3ff41d7e0333643204b45a48a92ffe364cbed949 Mon Sep 17 00:00:00 2001 From: Matthias Diester Date: Mon, 29 Jul 2024 14:21:23 +0200 Subject: [PATCH] Remove verbose flag for build Remove the verbose flag from Go build command, since this doesn't produce helpful output in almost all cases and is just slowing down the build slightly. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dc6daac4a..fc524cb3a 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ PKG = ./pkg/... BIN ?= $(OUTPUT_DIR)/$(APP) KUBECTL_BIN ?= $(OUTPUT_DIR)/kubectl-$(APP) -GO_FLAGS ?= -v -mod=vendor +GO_FLAGS ?= -mod=vendor GO_TEST_FLAGS ?= -race -cover GO_PATH ?= $(shell go env GOPATH)