From c938d32629c50d46aae419c3622bc03db6d360f1 Mon Sep 17 00:00:00 2001 From: Holger Obermaier Date: Tue, 22 Nov 2022 09:45:29 +0100 Subject: [PATCH] Add go.mod to App dependency --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0f9cb45..bb5b1e7 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ GOBIN = $(shell which go) .PHONY: all all: $(APP) -$(APP): $(GOSRC) +$(APP): $(GOSRC) go.mod make -C collectors $(GOBIN) get $(GOBIN) build -o $(APP) $(GOSRC_APP)