Skip to content

Commit aff13e1

Browse files
committed
Updated command-line help
1 parent d50b8b5 commit aff13e1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/io/github/utplsql/cli/RunCommand.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,15 @@ public class RunCommand {
3434
@Parameter(
3535
names = {"-p", "--path"},
3636
description = "run suites/tests by path, format: \n" +
37-
"-p schema or schema:[suite ...][.test] or schema[.suite ...][.test]")
37+
"-p=[schema|schema:[suite ...][.test]|schema[.suite ...][.test]")
3838
private List<String> testPaths = new ArrayList<>();
3939

4040
@Parameter(
4141
names = {"-f", "--format"},
4242
variableArity = true,
4343
description = "output reporter format: \n" +
44-
"-f reporter_name [output_file] [console_output]")
44+
"enables specified format reporting to specified output file (-o) and to screen (-s)\n" +
45+
"-f=reporter_name [-o=output_file [-s]]")
4546
private List<String> reporterParams = new ArrayList<>();
4647

4748
@Parameter(

0 commit comments

Comments
 (0)