Merge pull request #596 from BBasile/issue-195
fix #195 - Unrecognized CLI options gives huge stacktrace merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
commit
eafae0f6c0
|
@ -104,6 +104,11 @@ else
|
||||||
stderr.writeln(e.msg);
|
stderr.writeln(e.msg);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
catch (GetOptException e)
|
||||||
|
{
|
||||||
|
stderr.writeln(e.msg);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
if (muffin)
|
if (muffin)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue