mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
isoltest: Do not return an error code from --help
This commit is contained in:
@@ -433,8 +433,9 @@ int main(int argc, char const *argv[])
|
||||
{
|
||||
auto options = std::make_unique<IsolTestOptions>();
|
||||
|
||||
if (!options->parse(argc, argv))
|
||||
return -1;
|
||||
bool shouldContinue = options->parse(argc, argv);
|
||||
if (!shouldContinue)
|
||||
return 0;
|
||||
|
||||
options->validate();
|
||||
CommonOptions::setSingleton(std::move(options));
|
||||
|
||||
Reference in New Issue
Block a user