Skip to content

Commit

Permalink
Merge pull request #12080 from hashicorp/b-fix-gobin-circle
Browse files Browse the repository at this point in the history
build: BIN value must use single-path GOPATH value
  • Loading branch information
shoenig authored Feb 17, 2022
2 parents cc3a7bf + 6c7a934 commit 1c1ffe4
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 1c1ffe4

Please sign in to comment.