Skip to content
Snippets Groups Projects
Commit 9c4266fe authored by Mederic Fourmy's avatar Mederic Fourmy
Browse files

[skip-ci] fix plugin path in autoSetup

parent e0a0b8a0
No related branches found
No related tags found
2 merge requests!451After cmake and const refactor,!445Resolve "Refactoring WOLF installation system"
Pipeline #10624 skipped
......@@ -101,6 +101,9 @@ ProblemPtr Problem::autoSetup(ParamsServer &_server)
// Load plugins
auto loaders = std::vector<std::shared_ptr<Loader>>();
std::string plugins_path = _WOLF_LIB_DIR;
if (plugins_path.back() != '/'){
plugins_path += '/'; // only works for UNIX systems
}
/*try
{
plugins_path = _server.getParam<std::string>("plugins_path");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment