From e60a57a0e37dcbf7f977c7e1864d95f9c38548c6 Mon Sep 17 00:00:00 2001 From: Liam Galvin Date: Sat, 24 Nov 2018 20:48:11 +0000 Subject: [PATCH] fixed darwin build --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d18ed51..1ab58ab 100644 --- a/Makefile +++ b/Makefile @@ -36,4 +36,4 @@ build-linux: .PHONY: build-darwin build-darwin: mkdir -p bin/darwin - xgo -x -v -ldflags "-X main.Version='${CIRCLE_TAG}'" --targets=darwin/amd64 --dest=bin/darwin -out ${BINARY}-darwin-amd64 . + xgo -x -v -ldflags "-X main.Version='${CIRCLE_TAG}'" --targets=darwin/amd64 -out bin/darwin/${BINARY}-darwin-amd64 .