From af88c5863f908c72164d5985ec230261699288b6 Mon Sep 17 00:00:00 2001 From: Adam Reese Date: Thu, 14 Apr 2016 15:19:22 -0700 Subject: [PATCH] fix(Makefile): disable verbose on build --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 308737dcb..89a5ea3db 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ include versioning.mk all: build .PHONY: build -build: GOFLAGS += -v -a -installsuffix cgo +build: GOFLAGS += -a -installsuffix cgo build: @for i in $(BINARIES); do \ CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) $(GO) build -o $(BINDIR)/$$i $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' ./cmd/$$i || exit 1; \