wujingjing
2024-09-20 2ab0cc208ccd64d9f0e3edfa07966d43ccabb079
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];