Skip to content

Commit

Permalink
Remove verbose flag for build
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
HeavyWombat committed Jul 29, 2024
1 parent 5eb9b13 commit 3ff41d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 3ff41d7

Please sign in to comment.