new(all): TRUE multicloud.

This commit is contained in:
Rodrigo Rodriguez 2024-08-21 07:56:14 -03:00
parent 6e105ea765
commit d5e47de73e

View file

@ -443,20 +443,19 @@ export class GBDeployer implements IGBDeployer {
} }
let obj = {};
await asyncPromise.eachSeries(rows, async line => { await asyncPromise.eachSeries(rows, async line => {
if (line && line._cells[0] && line._cells[1] && line._cells[0].text) { if (line && line._cells[0] && line._cells[1] && line._cells[0].text) {
// Extracts values from columns in the current line. // Extracts values from columns in the current line.
let obj = {};
obj[line._cells[0].text] = line._cells[1].text; obj[line._cells[0].text] = line._cells[1].text;
list.push(obj);
} }
}); });
GBLogEx.info(min, GBUtil.toYAML(list)); GBLogEx.info(min, GBUtil.toYAML(list));
return list; return obj;
} }
/** /**