--- ditaa.orig/src/org/stathissideris/ascii2image/core/CommandLineConverter.java 2016-12-04 23:55:12.415936000 -0500 +++ ditaa/src/org/stathissideris/ascii2image/core/CommandLineConverter.java 2016-12-05 00:05:44.390902762 -0500 @@ -129,13 +129,13 @@ } catch (org.apache.commons.cli.ParseException e) { System.err.println(e.getMessage()); - new HelpFormatter().printHelp("java -jar ditaa.jar [OUTFILE]", cmdLnOptions, true); + new HelpFormatter().printHelp("ditaa [OUTFILE]", cmdLnOptions, true); System.exit(2); } if(cmdLine.hasOption("help") || args.length == 0 ){ - new HelpFormatter().printHelp("java -jar ditaa.jar [OUTFILE]", cmdLnOptions, true); + new HelpFormatter().printHelp("ditaa [OUTFILE]", cmdLnOptions, true); System.exit(0); } @@ -147,7 +147,7 @@ System.exit(2); } catch (IllegalArgumentException e2) { System.err.println("Error: " + e2.getMessage()); - new HelpFormatter().printHelp("java -jar ditaa.jar [OUTFILE]", cmdLnOptions, true); + new HelpFormatter().printHelp("ditaa [OUTFILE]", cmdLnOptions, true); System.exit(2); } @@ -155,7 +155,7 @@ if(args.length == 0) { System.err.println("Error: Please provide the input file filename"); - new HelpFormatter().printHelp("java -jar ditaa.jar [outfile]", cmdLnOptions, true); + new HelpFormatter().printHelp("ditaa [outfile]", cmdLnOptions, true); System.exit(2); }