Use mvnd instead of mvn in the help output

This commit is contained in:
Peter Palaga
2021-01-09 21:20:53 +01:00
parent 9b4172fd61
commit 0ee89b9a5d

View File

@@ -54,7 +54,7 @@ public class MvndHelpFormatter {
out.println();
PrintWriter pw = new PrintWriter(out);
HelpFormatter formatter = new HelpFormatter();
formatter.printHelp(pw, terminalWidth, "mvn [options] [<goal(s)>] [<phase(s)>]", "\nOptions:", cliManager.options,
formatter.printHelp(pw, terminalWidth, "mvnd [options] [<goal(s)>] [<phase(s)>]", "\nOptions:", cliManager.options,
1, 3, "\n", false);
pw.flush();
} catch (UnsupportedEncodingException e) {