mirror of
https://github.com/helm/helm.git
synced 2026-03-27 04:43:46 -04:00
Merge pull request #19 from adamreese/fix/makefile-madness
fix(Makefile): disable verbose on build
This commit is contained in:
commit
2d9563b483
1 changed files with 1 additions and 1 deletions
2
Makefile
2
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; \
|
||||
|
|
|
|||
Loading…
Reference in a new issue