From e17a1cd920763ce1d802dfd512c3c642e84f939d Mon Sep 17 00:00:00 2001 From: erroneousboat Date: Sat, 28 Sep 2019 13:10:48 +0200 Subject: [PATCH] Add modules command --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index acddff9..53d316b 100644 --- a/Makefile +++ b/Makefile @@ -63,6 +63,11 @@ install: @ echo "+ $@" @ go install . +modules: + @ echo "+ $@" + @ go mod tidy + @ go mod vendor + build-all: build build-linux build-mac .PHONY: default test build build-linux build-mac run install