[FIX/ADD] Fix YAML generation, keep track of time

This commit is contained in:
LDA 2024-10-11 16:09:21 +02:00
commit 13a9d23fa0
12 changed files with 33 additions and 10 deletions

View file

@ -106,6 +106,8 @@ Main(Array *args, HashMap *env)
/* Write out the config file to a YAML document */
Log(LOG_INFO, "Generating YAML...");
yaml = StreamOpen("parsee.yaml", "w");
ParseeConfigLoad(configuration);
ParseeConfigInit();
ParseeExportConfigYAML(yaml);
StreamClose(yaml);
Free(opts);