From c7f1f7cb72ceeb26a4715561132140f12c3356ba Mon Sep 17 00:00:00 2001 From: XuqmGroup Date: Thu, 18 Jun 2026 12:25:06 +0800 Subject: [PATCH] =?UTF-8?q?fix(ci):=20echo=20=E4=B8=AD=E6=96=87=E6=94=B9?= =?UTF-8?q?=E4=B8=BA=20bat+chcp65001=20=E4=BF=AE=E5=A4=8D=20Jenkins=20?= =?UTF-8?q?=E6=8E=A7=E5=88=B6=E5=8F=B0=E4=B9=B1=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5c3359a..4562f8e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -260,11 +260,11 @@ pipeline { success { script { def selected = env.SELECTED_MODULES?.split(',') ?: [] - echo "RN SDK 构建成功 — 已发布模块: ${selected.join(', ')} (Commit: ${env.GIT_COMMIT_SHORT})" + bat "chcp 65001 >nul && echo RN SDK 构建成功 — 已发布模块: ${selected.join(', ')} (Commit: ${env.GIT_COMMIT_SHORT})" } } failure { - echo "RN SDK 构建失败,请检查日志" + bat 'chcp 65001 >nul && echo RN SDK 构建失败,请检查日志' } } }