fix(cli): restore other files support

This commit is contained in:
Ruben Fiszel
2024-01-31 19:53:37 +01:00
parent 3f37316430
commit b191e37fb6
+3 -1
View File
@@ -390,7 +390,7 @@ async function compareDynFSElement(
}
}
return o;
} else if (k.endsWith("flow.yaml")) {
} else if (k.endsWith(".app.yaml")) {
const o: any = yamlParse(v);
const o2 = o["policy"];
@@ -403,6 +403,8 @@ async function compareDynFSElement(
}
}
return o;
} else {
return o;
}
}
for (const [k, v] of Object.entries(m1)) {