From 9f0aabfb6f99b8515cb6d043c61e46ad4ab756a6 Mon Sep 17 00:00:00 2001 From: Chad Whitacre Date: Thu, 4 Jan 2018 14:38:20 -0500 Subject: [PATCH] Allow for default GOPATH --- GNUmakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/GNUmakefile b/GNUmakefile index f3dc6b203..1be8744cb 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -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)