Merge pull request #12080 from hashicorp/b-fix-gobin-circle
build: BIN value must use single-path GOPATH value
This commit is contained in:
commit
a17e3ec83f
|
@ -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 ?=
|
||||
|
|
Loading…
Reference in New Issue