From 66067a267a586d2b935f0d0bd4b23aba80092ba5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AF=BA=E5=A2=A8?= Date: Tue, 7 Apr 2026 13:47:05 +0800 Subject: [PATCH] fix(makefile): binary build missing for migration (#447) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 诺墨 --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 35431163..a83d696f 100644 --- a/Makefile +++ b/Makefile @@ -138,6 +138,7 @@ COMMIT ?= $(shell git rev-parse --short HEAD 2>/dev/null || echo unknown) build: cd server && go build -o bin/server ./cmd/server cd server && go build -ldflags "-X main.version=$(VERSION) -X main.commit=$(COMMIT)" -o bin/multica ./cmd/multica + cd server && go build -o bin/migrate ./cmd/migrate test: $(REQUIRE_ENV)