Improve command description

This commit is contained in:
RatzzFatzz
2024-11-22 00:44:02 +01:00
parent 939f6053dd
commit b638d93358
2 changed files with 26 additions and 22 deletions

View File

@@ -17,7 +17,16 @@ import picocli.CommandLine;
import java.util.Set;
@Slf4j
@CommandLine.Command(mixinStandardHelpOptions = true, versionProvider = ProjectUtil.class)
@CommandLine.Command(
name = "mkvasc",
usageHelpWidth = 120,
customSynopsis = {
"mkvasc -a <attributeConfig>... -l <libraryPath> [-s]",
"Example: mkvasc -a eng:eng eng:ger -l /mnt/media/ -s"
},
mixinStandardHelpOptions = true,
versionProvider = ProjectUtil.class
)
public class Main implements Runnable {
@Getter