From ed6092c601279140f1c89ab950f6209db61cdcd2 Mon Sep 17 00:00:00 2001 From: Jack Murdock Date: Thu, 29 Aug 2019 16:22:19 -0700 Subject: [PATCH] fix Makefile (#162) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2709e372..18f0af4b 100644 --- a/Makefile +++ b/Makefile @@ -54,8 +54,8 @@ install: go-mod-vendor .PHONY: release-artifacts release-artifacts: go-mod-vendor mkdir -p ./.ignore - GOOS=darwin GOARCH=amd64 $(GO) build -o ./ignore/$(APP)-$(PROGVER).darwin-amd64 - GOOS=linux GOARCH=amd64 $(GO) build -o ./ignore/$(APP)-$(PROGVER).linux-amd64 + GOOS=darwin GOARCH=amd64 $(GO) build -o ./.ignore/$(APP)-$(PROGVER).darwin-amd64 + GOOS=linux GOARCH=amd64 $(GO) build -o ./.ignore/$(APP)-$(PROGVER).linux-amd64 .PHONY: docker docker: