Correct exit codes for helpers

This commit is contained in:
LaGrunge 2019-09-30 11:08:02 +00:00 committed by cc-engineering
parent 792815e9ea
commit 48efc50e88

View file

@ -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;