Working
Some checks failed
Dropshell Test / Build_and_Test (push) Failing after 27s

This commit is contained in:
Your Name
2025-05-11 13:04:12 +12:00
parent 46396369d7
commit 62191cceed
7 changed files with 134 additions and 43 deletions

View File

@ -68,7 +68,7 @@ int main(int argc, char* argv[]) {
<< info->help_description << std::endl;
return 1;
}
CommandContext ctx{args};
CommandContext ctx{args[0], cmd, std::vector<std::string>(args.begin() + 2, args.end())};
return info->handler(ctx);
}