From 2f3820f1681294211fe3eae904b5e393f2d990ee Mon Sep 17 00:00:00 2001 From: xiejianxiong Date: Tue, 25 Aug 2020 16:26:20 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/auto-publish.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/auto-publish.js b/bin/auto-publish.js index a82a719..3be739c 100644 --- a/bin/auto-publish.js +++ b/bin/auto-publish.js @@ -48,7 +48,7 @@ const deleteBuild = (task) => new Promise(async resolve => { shell.rm('-rf', `${buildPath}/static`); await execa('git', ['add', '.']); - await execa('git', ['commit', '-m', `'发布新版本'`]); + await execa('git', ['commit', '-m', `'自动发布'`]); await execa('git', ['push', 'origin', mapping[env].buildBranch]); resolve(); } catch (e) { @@ -64,7 +64,7 @@ const copyBuild = (task) => new Promise(async resolve => { shell.cd(buildPath); await execa('git', ['add', '.']); - await execa('git', ['commit', '-m', `'发布新版本'`]); + await execa('git', ['commit', '-m', `'自动发布'`]); await execa('git', ['push', 'origin', mapping[env].buildBranch]); resolve(); } catch (e) {