Skip to content

Commit

Permalink
Update: Set GO111MODULE to off (aporeto-inc#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Powers committed Sep 6, 2019
1 parent 417b4ed commit 12ee0db
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ PKGS := $(shell go list ./... | grep -v '/vendor/')
GOFILES := $(shell go list -f '{{range $$index, $$element := .GoFiles}}{{$$.Dir}}/{{$$element}}{{"\n"}}{{end}}' ./... | grep -v '/vendor/')
TXT_FILES := $(shell find * -type f -not -path 'vendor/**')

# Until we support go.mod properly
export GO111MODULE = off

default: clean misspell vet check-fmt test

test: clean
Expand Down

0 comments on commit 12ee0db

Please sign in to comment.