update submodules and CLIParser sto finish execution after help switch

This commit is contained in:
2026-01-10 17:03:28 +01:00
parent ccaf7e66e0
commit cfaff6ee54
3 changed files with 3 additions and 2 deletions

2
scc

Submodule scc updated: ad44f61ee0...d68acaab98

View File

@@ -28,6 +28,7 @@ CLIParser::CLIParser(int argc, char* argv[])
// --help option // --help option
if(vm_.count("help")) { if(vm_.count("help")) {
std::cout << "DBT-RISE-TGC based virtual platform of TGC cores" << std::endl << desc << std::endl; std::cout << "DBT-RISE-TGC based virtual platform of TGC cores" << std::endl << desc << std::endl;
exit(0);
} }
po::notify(vm_); // throws on error, so do after help in case there are any problems po::notify(vm_); // throws on error, so do after help in case there are any problems
valid = true; valid = true;