From 4c4361a4f37ece7ed5ca5cc56725814b211d9b47 Mon Sep 17 00:00:00 2001 From: Ainar Garipov Date: Mon, 30 Nov 2020 19:40:06 +0300 Subject: [PATCH] all: fix Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 77407bf..cd819f2 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ release: check-env-release mkdir -p $(BUILDDIR) cp LICENSE $(BUILDDIR)/ cp README.md $(BUILDDIR)/ - CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) go build -ldflags "-X main.VersionString=$(VERSION)" -o $(BUILDDIR)/$(NAME)$(ext) + CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) go build -ldflags "-X main.VersionString=$(VERSION)" -o $(BUILDDIR)/$(NAME)$(ext) ./cmd/ cd $(BASE_BUILDDIR) ; $(archiveCmd) test: @@ -40,4 +40,4 @@ check-env-release: @ if [ "$(GOARCH)" = "" ]; then \ echo "Environment variable GOOS not set"; \ exit 1; \ - fi \ No newline at end of file + fi