Changing the error routine to exit with a 1 and to not display help as

it seems to hide the error message.  #44
This commit is contained in:
Rob Greene 2020-10-07 19:46:53 -05:00
parent 3cf8c4a9b5
commit 85763a3dcc
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ public class ac {
System.err.println(textBundle.format("CommandLineErrorMessage", //$NON-NLS-1$
ex.getLocalizedMessage()));
ex.printStackTrace();
help();
System.exit(1);
}
}