From 9ec3c1fb9dda276974e418c958773f4d8ca82b54 Mon Sep 17 00:00:00 2001 From: Arik Chakma Date: Wed, 20 Aug 2025 20:00:03 +0600 Subject: [PATCH] fix: topic path --- scripts/sync-content-to-repo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/sync-content-to-repo.ts b/scripts/sync-content-to-repo.ts index 4a757de7e..b3b82f398 100644 --- a/scripts/sync-content-to-repo.ts +++ b/scripts/sync-content-to-repo.ts @@ -115,7 +115,7 @@ for (const topic of allTopics) { const topicSlug = `${slugify(label)}@${nodeId}.md`; - const topicPath = path.join(ROADMAP_CONTENT_DIR, topicSlug); + const topicPath = path.join(ROADMAP_CONTENT_DIR, 'content', topicSlug); const topicDir = path.dirname(topicPath); const topicDirExists = await fs .stat(topicDir)