fix(Makefile): disable go modules

required on more modern versions of Go where `go mod` is enabled by default.

Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
pull/7588/head
Matthew Fisher 6 years ago
parent 63e1c9bc7f
commit 725cd915bc
No known key found for this signature in database
GPG Key ID: 92AA783CBAAE8E3B

@ -8,7 +8,7 @@ TARGET_OBJS ?= darwin-amd64.tar.gz darwin-amd64.tar.gz.sha256 linux-amd64.
DIST_DIRS = find * -type d -exec DIST_DIRS = find * -type d -exec
# go option # go option
GO ?= go GO ?= GO111MODULE=off go
PKG := $(shell glide novendor) PKG := $(shell glide novendor)
TAGS := TAGS :=
TESTS := . TESTS := .

Loading…
Cancel
Save