wujingjing
2024-10-31 b5b548b5fc015bdd727159b8f3d1916172c92d91
scripts/helper.js
@@ -18,8 +18,8 @@
const commonDir = path.join(customerListDir, 'common');
 const item = customerList[0];
const customerSplit = item.split(':');
const deployEnv = customerSplit[1];
const customerSplit = item?.split(':');
const deployEnv = customerSplit?.[1];
// 是否为生产环境
const isPro = deployEnv==='pro';
// const deployEnv = process.argv[3];
@@ -384,6 +384,6 @@
   updateImportGlob,
   restoreImportGlob,
   deployEnv,
   changeBranch
};