Skip to content

Commit

Permalink
build: use single-path GOPATH set in makefile
Browse files Browse the repository at this point in the history
When GOBIN is not set, BIN must be set to the single-path workaround
value of GOPATH, because Circle.
  • Loading branch information
shoenig committed Feb 17, 2022
1 parent 36e31c5 commit 6c7a934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ endif
# Respect $GOBIN if set in environment or via $GOENV file.
BIN := $(shell go env GOBIN)
ifndef BIN
BIN := $(shell go env GOPATH)/bin
BIN := $(GOPATH)/bin
endif

GO_TAGS ?=
Expand Down

0 comments on commit 6c7a934

Please sign in to comment.