fix(core.gbapp): SaaS missing in PROD.
This commit is contained in:
parent
63e908fbd0
commit
fa66786a7c
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue