mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-12-27 14:39:53 -08:00
Merge pull request #530 from leitzler/leitzler-patch-1
Use go env to fetch GOPATH to support Go 1.8
This commit is contained in:
commit
dd3a681b27
2
Makefile
2
Makefile
|
@ -12,7 +12,7 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
GO ?= GO15VENDOREXPERIMENT=1 go
|
GO ?= GO15VENDOREXPERIMENT=1 go
|
||||||
GOPATH := $(firstword $(subst :, ,$(GOPATH)))
|
GOPATH := $(firstword $(subst :, ,$(shell $(GO) env GOPATH)))
|
||||||
|
|
||||||
PROMU ?= $(GOPATH)/bin/promu
|
PROMU ?= $(GOPATH)/bin/promu
|
||||||
STATICCHECK ?= $(GOPATH)/bin/staticcheck
|
STATICCHECK ?= $(GOPATH)/bin/staticcheck
|
||||||
|
|
Loading…
Reference in a new issue