From 9c7906364d25cb38f517b41b7d04a90cc17b2f8d Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Wed, 21 Apr 2021 08:45:51 -0400 Subject: [PATCH] add go mod tidy to bootstrap make target Signed-off-by: Alex Goodman --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 7dbf850ee..60815c8ad 100644 --- a/Makefile +++ b/Makefile @@ -108,6 +108,7 @@ bootstrap-tools: $(TEMPDIR) .PHONY: bootstrap-go bootstrap-go: go mod download + go mod tidy # note: it is important that the go.sum is kept in a consistent state at all times (especially during release) .PHONY: bootstrap bootstrap: $(RESULTSDIR) bootstrap-go bootstrap-tools ## Download and install all go dependencies (+ prep tooling in the ./tmp dir)