NO-JIRA: fix typo on the cli
./artemis help was returning "exp" twice on the
This commit is contained in:
parent
318778954d
commit
c3436a36a0
|
@ -159,7 +159,7 @@ public class Artemis {
|
||||||
withDefaultCommand(HelpAddress.class).withCommands(CreateAddress.class, DeleteAddress.class, UpdateAddress.class, ShowAddress.class);
|
withDefaultCommand(HelpAddress.class).withCommands(CreateAddress.class, DeleteAddress.class, UpdateAddress.class, ShowAddress.class);
|
||||||
|
|
||||||
if (instance != null) {
|
if (instance != null) {
|
||||||
builder.withGroup("data").withDescription("data tools group (print|exp|imp|exp|encode|decode|compact) (example ./artemis data print)").
|
builder.withGroup("data").withDescription("data tools group (print|imp|exp|encode|decode|compact) (example ./artemis data print)").
|
||||||
withDefaultCommand(HelpData.class).withCommands(PrintData.class, XmlDataExporter.class, XmlDataImporter.class, DecodeJournal.class, EncodeJournal.class, CompactJournal.class);
|
withDefaultCommand(HelpData.class).withCommands(PrintData.class, XmlDataExporter.class, XmlDataImporter.class, DecodeJournal.class, EncodeJournal.class, CompactJournal.class);
|
||||||
builder.withGroup("user").withDescription("default file-based user management (add|rm|list|reset) (example ./artemis user list)").
|
builder.withGroup("user").withDescription("default file-based user management (add|rm|list|reset) (example ./artemis user list)").
|
||||||
withDefaultCommand(HelpUser.class).withCommands(ListUser.class, AddUser.class, RemoveUser.class, ResetUser.class);
|
withDefaultCommand(HelpUser.class).withCommands(ListUser.class, AddUser.class, RemoveUser.class, ResetUser.class);
|
||||||
|
|
|
@ -49,7 +49,7 @@ For a full list of data tools commands available use:
|
||||||
```
|
```
|
||||||
NAME
|
NAME
|
||||||
artemis data - data tools group
|
artemis data - data tools group
|
||||||
(print|exp|imp|exp|encode|decode|compact) (example ./artemis data print)
|
(print|imp|exp|encode|decode|compact) (example ./artemis data print)
|
||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
artemis data
|
artemis data
|
||||||
|
|
Loading…
Reference in New Issue