fixed dependency bug
This commit is contained in:
parent
3fa162c9dc
commit
28b6fb4339
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ Configuration::Configuration(nlohmann::json& configs, nlohmann::json& config, fs
|
|||
outputDir = fullOutputPath.generic_string();
|
||||
} else if(key == "dependencies") {
|
||||
for (auto it : val) {
|
||||
dependencies.emplace_back(val["path"].get<std::string>(), val["configuration"].get<std::string>());
|
||||
dependencies.emplace_back(it["path"].get<std::string>(), it["configuration"].get<std::string>());
|
||||
}
|
||||
} else if(key != "extends") {
|
||||
additionalProperties.insert({key, val});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue