From c523f1c797345c36894cc6432ff5e7d9dcabcb03 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 19 Jul 2024 13:40:03 +0200 Subject: [PATCH] make: build all go files in cmd/thalos --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8f312f2..63dd23a 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ DOCKER_IMAGE_TAG ?= $(PROGRAM_VERSION) build: build/$(PROGRAM) build/$(PROGRAM) : - $(GO) build $(GOBUILDFLAGS) -o $@ cmd/thalos/main.go cmd/thalos/server.go + $(GO) build $(GOBUILDFLAGS) -o $@ ./cmd/thalos/ tools : build/thalos-tools