Reformatted 'saves' cli arg

This commit is contained in:
Collin Smith 2020-11-22 14:21:43 -08:00
parent 3be16a0775
commit 37c6ee0984

View File

@ -78,8 +78,13 @@ public class DesktopLauncher {
.hasArg() .hasArg()
.argName("path") .argName("path")
.build()) .build())
.addOption("saves", true, .addOption(Option
"directory containing D2 Character save files (defaults to D2 home directory)") .builder("s")
.longOpt("saves")
.desc("directory containing D2 character save files (*.d2s)")
.hasArg()
.argName("path")
.build())
; ;
CommandLine cmd = null; CommandLine cmd = null;