From fd008872720e857f1d311b8ca37607f7c72e23f2 Mon Sep 17 00:00:00 2001 From: Home Date: Sat, 28 Mar 2026 23:09:33 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4jenkins=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E5=8C=96=E6=B5=81=E6=B0=B4=E7=BA=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 530308e9..cef8f487 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,7 +39,7 @@ pipeline { // 先创建目标目录(防止目录不存在报错) sh "mkdir -p ${ANDROID_ASSETS_DIR}" // 把 dist 里所有文件 复制 到安卓资源目录(推荐) - sh "cp -rf dist/* ${ANDROID_ASSETS_DIR}/" + sh "cp -rf dist/build/app/* ${ANDROID_ASSETS_DIR}/" echo "✅ 资源复制完成" } }