From 361386bdf996d47c8c44868ab252ba55c9eda085 Mon Sep 17 00:00:00 2001 From: whywaita Date: Tue, 14 Jul 2020 15:27:00 +0900 Subject: [PATCH] Makefile use Go modules --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0be7f94..4ebc288 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ BIN_DIR=_output/cmd/bin all: init build deps: - dep ensure + go mod download build: init go build -o ${BIN_DIR}/gotgt gotgt.go