Added check for argument parsing failure

This commit is contained in:
Nathan McRae 2025-03-22 23:35:09 -07:00
parent 947bccb6da
commit 670779a3aa

View File

@ -115,6 +115,12 @@ public class Main extends Application {
public static void main(String[] args) {
MainParsedArguments parsedArgs = new MainParsedArguments(args);
if (parsedArgs.getParseException() != null) {
logger.log(Level.SEVERE, "Failed when parsing arguments", parsedArgs.getParseException());
parsedArgs.printHelp();
System.exit(0);
}
if (parsedArgs.getHelpFlag()) {
parsedArgs.printHelp();
System.exit(0);