Generate commands/fix det command rename (#881)

* made a link to bash autocompletion script in main folder, and replaced all references to 'det' command with 'sls_detector'
This commit is contained in:
2023-12-13 15:38:10 +01:00
committed by GitHub
parent ce7270e8a2
commit 51412f40cf
7 changed files with 106 additions and 101 deletions

View File

@ -9,7 +9,7 @@ int InferAction::infer(sls::CmdParser &parser, std::ostream &os) {
if (it != functions.end()) {
return ((*this).*(it->second))();
} else {
throw RuntimeError("det not implemented for command: " +
throw RuntimeError("sls_detector not implemented for command: " +
parser.command());
}
}