Fixed external files generation

This commit is contained in:
KiritoDv
2024-05-25 09:32:22 -06:00
parent 5093e972d2
commit 33315b228d
+4 -1
View File
@@ -313,7 +313,10 @@ void Companion::ParseCurrentFileConfig(YAML::Node node) {
YAML::Node root = YAML::LoadFile(externalFileName);
ProcessFile(root);
if (!this->gProcessedFiles.contains(this->gCurrentFile)) {
ProcessFile(root);
this->gProcessedFiles.insert(this->gCurrentFile);
}
SPDLOG_INFO("Finishing processing of file: {}", currentFile);