From efac452957fe70f1a0b8d7367e304c12bf9d3df2 Mon Sep 17 00:00:00 2001 From: Aaron Hurt Date: Mon, 15 Apr 2019 18:59:55 -0500 Subject: [PATCH] fix typo in last commit and force modules via Makefile --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b999fa96a..f6d43f172 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,10 @@ GORELEASER = $(shell which goreleaser) CI_CONSUL_VERSION=1.4.2 CI_VAULT_VERSION=1.0.3 +# force go modules +GO111MODULE = on +export GO111MODULE + # all is the default target all: test @@ -44,7 +48,7 @@ build: gofmt # test runs the tests test: build - go test -mod=vendor -v -test.timeout 15s /... + go test -mod=vendor -v -test.timeout 15s ./... # gofmt runs gofmt on the code gofmt: