From 9038e3a000eaca86c230b9edefb768424c69b366 Mon Sep 17 00:00:00 2001 From: Daniel Arroyo Date: Tue, 7 Jul 2026 15:24:55 -0400 Subject: [PATCH] fix(make): copy web/dist into internal/webui/dist before build-all --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index f1657b5..3dae2a5 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,7 @@ build-go: $(BUILD_FLAGS) $(GO) build -ldflags "$(LDFLAGS)" -o bin/$(BINARY) ./cmd/server build-all: frontend + cp -R web/dist internal/webui/dist $(BUILD_FLAGS) GOOS=linux GOARCH=amd64 $(GO) build -ldflags "$(LDFLAGS)" -o bin/$(BINARY)-linux-amd64 ./cmd/server $(BUILD_FLAGS) GOOS=linux GOARCH=arm64 $(GO) build -ldflags "$(LDFLAGS)" -o bin/$(BINARY)-linux-arm64 ./cmd/server