Skip to content

Commit 9d22dcf

Browse files
committed
Update CLI option properties and description
1 parent 62b13ed commit 9d22dcf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

swan-pipeline/src/main/java/de/fraunhofer/iem/swan/cli/CliRunner.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ public class CliRunner implements Callable<Integer> {
3232
@CommandLine.Option(names = {"-o", "--output"}, description = {"Directory to save output files"})
3333
private String outputDir = "";
3434

35-
@CommandLine.Option(names = {"-f", "--feature"}, description = {"Select one or more feature sets: all, code, doc-auto or doc-manual"})
35+
@CommandLine.Option(names = {"-f", "--feature"}, arity = "1..*", description = {"Select one or more feature sets: all, code, doc-auto or doc-manual"})
3636
private List<String> featureSet = Collections.singletonList("code");
3737

38-
@CommandLine.Option(names = {"-t", "--toolkit"}, description = {"ML toolkit: meka, weka, ml-plan"})
38+
@CommandLine.Option(names = {"-t", "--toolkit"}, description = {"ML toolkit: meka, weka, autoweka, mlplan"})
3939
private String toolkit = "meka";
4040

4141
@CommandLine.Option(names = {"-s", "--srm"}, description = {"SRM: all, source, sink, sanitizer, authentication, relevant"})

0 commit comments

Comments
 (0)