1
0
mirror of https://github.com/142vip/408CSFamily.git synced 2026-04-24 02:30:36 +08:00

fix: 修复xmind文件使用viewer依赖构建异常,配置自定义组件只客户端渲染

This commit is contained in:
chu fan
2023-10-12 23:54:17 +08:00
parent e817b6985f
commit 229ae8e41c
5 changed files with 9 additions and 15 deletions

View File

@@ -37,8 +37,9 @@ exports.execShell = async commands => {
const execResult = await exec(command)
console.log(`\n<<<command(${count})--ending === `)
// 指令异常,不执行后续指令
// 指令异常,不执行后续指令非0退出
if (execResult.code !== 0) {
exit(1)
break;
}
}