fix(core.gbapp): SaaS missing in PROD.

This commit is contained in:
me@rodrigorodriguez.com 2024-09-26 14:08:41 -03:00
parent 63e908fbd0
commit fa66786a7c

View file

@ -465,11 +465,11 @@ export class GBDeployer implements IGBDeployer {
} else { } else {
return []; return [];
} }
console.log(GBUtil.toYAML(rows));
await asyncPromise.eachSeries(rows, async (line: any) => { await asyncPromise.eachSeries(rows, async (line: any) => {
console.log(GBUtil.toYAML(line));
if (line && line.length > 0) { if (line && line.length > 0) {
const key = line[1]?.trim(); const key = line[1];
const value = line[2]?.trim(); const value = line[2];
if (key && value) { if (key && value) {
obj[key] = value; obj[key] = value;
} }