From 04a61d2fc9f8fbb708d4c6dd86603194bb0cff00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Tue, 10 Sep 2024 10:43:25 +0300 Subject: [PATCH] Makefile: undocker depends on GODEPS --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1a863a3..27a4c9b 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ VSN ?= $(shell git describe --dirty) VSNHASH ?= $(shell git rev-parse --verify HEAD) LDFLAGS ?= -ldflags "-X main.Version=$(VSN) -X main.VersionHash=$(VSNHASH)" -undocker: ## builds binary for the current architecture +undocker: $(GODEPS) ## builds binary for the current architecture go build $(LDFLAGS) -o $@ .PHONY: test