From 2232b0b55fadd932ad40d235f97e1f76b6920b3d Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Wed, 20 Feb 2019 18:41:16 -0800 Subject: [PATCH] Fix mac build failure for healthcheck binary (#7263) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 96170fba4..8a37a990e 100644 --- a/Makefile +++ b/Makefile @@ -66,7 +66,7 @@ coverage: build build: checks @echo "Building minio binary to './minio'" @GOFLAGS="" CGO_ENABLED=0 go build -tags kqueue --ldflags $(BUILD_LDFLAGS) -o $(PWD)/minio - @GOFLAGS="" CGO_ENABLED=0 go build --ldflags="-s -w" -o $(PWD)/dockerscripts/healthcheck $(PWD)/dockerscripts/healthcheck.go + @GOFLAGS="" CGO_ENABLED=0 go build -tags kqueue --ldflags="-s -w" -o $(PWD)/dockerscripts/healthcheck $(PWD)/dockerscripts/healthcheck.go docker: build @docker build -t $(TAG) . -f Dockerfile.dev