Skip to content

Commit

Permalink
Fix 5th bug in the Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoMagdaleno committed Jul 28, 2020
1 parent f914571 commit 56df71a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down

0 comments on commit 56df71a

Please sign in to comment.