Fix folder param in b_manage

This commit is contained in:
2025-05-14 12:51:56 +02:00
parent d6603dd638
commit b639a2d79a
4 changed files with 12 additions and 7 deletions

View File

@@ -119,6 +119,9 @@ int main(int argc, char** argv)
manageArguments(program, argc, argv);
std::string model = program.get<std::string>("model");
std::string path = program.get<std::string>("folder");
if (path.back() != '/') {
path += '/';
}
std::string score = program.get<std::string>("score");
std::string platform = program.get<std::string>("platform");
bool complete = program.get<bool>("complete");