Skip to content

Commit

Permalink
new(all): TRUE multicloud.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodrigo Rodriguez committed Aug 21, 2024
1 parent 6e105ea commit d5e47de
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/core.gbapp/services/GBDeployer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -443,20 +443,19 @@ export class GBDeployer implements IGBDeployer {
}


let obj = {};
await asyncPromise.eachSeries(rows, async line => {

if (line && line._cells[0] && line._cells[1] && line._cells[0].text) {

// Extracts values from columns in the current line.

let obj = {};
obj[line._cells[0].text] = line._cells[1].text;
list.push(obj);
}
});

GBLogEx.info(min, GBUtil.toYAML(list));
return list;
return obj;
}

/**
Expand Down

0 comments on commit d5e47de

Please sign in to comment.