From 77f1bd6797d4cd36e904d7864516ec3cc670a74e Mon Sep 17 00:00:00 2001 From: Jonathon Anderson Date: Sun, 8 Oct 2023 01:01:13 -0600 Subject: [PATCH] Split tidy into separate target This allows `make vendor` to download packages to satisfy `go.mod` without changing `go.mod`. Signed-off-by: Jonathon Anderson --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ea71f48e..e4eb3865 100644 --- a/Makefile +++ b/Makefile @@ -12,9 +12,12 @@ docs: man_pages reference .PHONY: vendor vendor: - go mod tidy -v go mod vendor +.PHONY: tidy +tidy: + go mod tidy + config = etc/wwapic.conf \ etc/wwapid.conf \ etc/wwapird.conf \