core/command: avoid running when cli11 forces returning 0

Fixes running when --help is passed.
This commit is contained in:
outfoxxed 2025-01-03 02:42:32 -08:00
parent 47bcf8ee61
commit dc3a79600d
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
2 changed files with 2 additions and 2 deletions

View file

@ -192,7 +192,7 @@ int parseCommand(int argc, char** argv, CommandState& state) {
CLI11_PARSE(*cli, argc, argv);
return 0;
return 65535;
}
} // namespace qs::launch