From 2a1082d8aab3664f3a840c0f51f48f0e4b91b08d Mon Sep 17 00:00:00 2001 From: luckyasme <807254037@qq.com> Date: Thu, 28 Aug 2025 17:31:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BC=98=E5=8C=96=E6=9E=84=E5=BB=BA?= =?UTF-8?q?=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/merge.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/merge.js b/scripts/merge.js index 5634581e8..c6dad2c52 100644 --- a/scripts/merge.js +++ b/scripts/merge.js @@ -309,10 +309,10 @@ const normalizeContentWithHugo = async (buildPath, branch, source) => { } if (source === 'openatom') { - replaceOrgDomain(path.join(BUILD_DIR, 'i18n')); - replaceOrgDomain(path.join(BUILD_DIR, 'layouts')); - replaceOrgDomain(path.join(BUILD_DIR, 'static')); - replaceOrgDomain(path.join(BUILD_DIR, 'content')); + replaceOrgDomain(path.join(buildPath, 'i18n')); + replaceOrgDomain(path.join(buildPath, 'layouts')); + replaceOrgDomain(path.join(buildPath, 'static')); + replaceOrgDomain(path.join(buildPath, 'content')); } }; -- Gitee