Merge pull request #12080 from hashicorp/b-fix-gobin-circle

build: BIN value must use single-path GOPATH value
This commit is contained in:
Seth Hoenig 2022-02-17 13:48:36 -06:00 committed by GitHub
commit a17e3ec83f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ?=