From 56df71a700754963abc433a00a2fae8c7908490b Mon Sep 17 00:00:00 2001 From: Diego Magdaleno Date: Tue, 28 Jul 2020 12:16:03 -0500 Subject: [PATCH] Fix 5th bug in the Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a2bf26b..da91583 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,8 @@ DESTDIR=$ PREFIX=/usr/local build: - @echo "Building $(GOFILES) to ./bin" - @GOPATH=$(GOPATH) GOBIN=$(GOBIN) go build -o bin/$(GONAME) $(GOFILES) + @echo "Building $(GOFILES) to $(GOBIN)" + @GOPATH=$(GOPATH) GOBIN=$(GOBIN) go build -o $(GOBIN)/$(GONAME) $(GOFILES) get: @GOPATH=$(GOPATH) GOBIN=$(GOBIN) go get .