From b2b54db409f1d513a7e9b3792854fedb081b4b4a Mon Sep 17 00:00:00 2001 From: henrygd Date: Tue, 9 Sep 2025 15:41:15 -0400 Subject: [PATCH] update makefile with proper site src path --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5bcd480..03d72b5 100644 --- a/Makefile +++ b/Makefile @@ -60,7 +60,7 @@ build-hub-dev: tidy build: build-agent build-hub generate-locales: - @if [ ! -f ./internal/site/internal/locales/en/en.ts ]; then \ + @if [ ! -f ./internal/site/src/locales/en/en.ts ]; then \ echo "Generating locales..."; \ command -v bun >/dev/null 2>&1 && cd ./internal/site && bun install && bun run sync || cd ./internal/site && npm install && npm run sync; \ fi