From 858d6ee85ac5c99c85c1fa959ff2747d7e44d002 Mon Sep 17 00:00:00 2001 From: i-norden Date: Fri, 7 Jan 2022 13:07:57 -0600 Subject: [PATCH] set GO111MODULE=off when go getting --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c3203cb..6e55180 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ BIN = $(GOPATH)/bin ## Migration tool GOOSE = $(BIN)/goose $(BIN)/goose: - go get -u github.com/pressly/goose/cmd/goose + GO111MODULE=off go get -u github.com/pressly/goose/cmd/goose .PHONY: installtools installtools: | $(GOOSE)