Skip to content
Snippets Groups Projects
Commit fb5277b9 authored by moenck's avatar moenck
Browse files

suffix should be provided by the caller, so it is framework independent (BioTracker/Robotracker)

parent f625036d
No related branches found
No related tags found
No related merge requests found
Pipeline #12662 passed
......@@ -200,7 +200,7 @@ std::vector<std::string> PluginLoader::searchDirectoriesForPlugins(std::vector<s
for (auto& e : std::filesystem::directory_iterator(path))
{
auto p = e.path();
if (is_shared_library(p) && p.replace_extension().extension() == ".robo_tracker")
if (is_shared_library(p) && p.replace_extension().extension() == suffix)
{
filesFromFolders.push_back(p.string());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment