chore: make help command return exit code 0

This commit is contained in:
Jan
2024-01-23 23:14:25 +01:00
parent 05437cfd7d
commit 0b0b888b0d
4 changed files with 8 additions and 4 deletions

View File

@ -264,7 +264,8 @@ bool UnlinkerArgs::ParseArgs(const int argc, const char** argv, bool& shouldCont
if (m_argument_parser.IsOptionSpecified(OPTION_HELP))
{
PrintUsage();
return false;
shouldContinue = false;
return true;
}
// Check if the user wants to see the version