Merge pull request #3781 from whit537/default-GOPATH

Allow for default GOPATH
This commit is contained in:
James Phillips 2018-01-04 18:53:52 -08:00 committed by GitHub
commit 198bdc18e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -13,6 +13,7 @@ GOTAGS ?=
GOFILES ?= $(shell go list ./... | grep -v /vendor/)
GOOS=$(shell go env GOOS)
GOARCH=$(shell go env GOARCH)
GOPATH=$(shell go env GOPATH)
# Get the git commit
GIT_COMMIT=$(shell git rev-parse --short HEAD)