Correct exit codes for helpers
This commit is contained in:
parent
792815e9ea
commit
48efc50e88
1 changed files with 2 additions and 2 deletions
|
@ -193,13 +193,13 @@ CliCommandOptions DefineOptions(int argc, char * argv[])
|
|||
if (vm.count("help"))
|
||||
{
|
||||
std::cout << optionsDescription << std::endl;
|
||||
exit(1);
|
||||
exit(0);
|
||||
}
|
||||
|
||||
if (vm.count("version"))
|
||||
{
|
||||
std::cout << generator::DataVersion::GetCodeVersion() << std::endl;
|
||||
exit(1);
|
||||
exit(0);
|
||||
}
|
||||
|
||||
return o;
|
||||
|
|
Loading…
Add table
Reference in a new issue