fix #195 - Unrecognized CLI options gives huge stacktrace
This commit is contained in:
parent
f2bc3f7b05
commit
1a2352d17f
|
@ -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