From 9391fa79c3d9fe996cd3d6ac0d63e94a090e1d8a Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Tue, 8 Oct 2013 15:05:12 +0400 Subject: [PATCH] CLI help text changed --- .../src/org/jetbrains/jet/cli/jvm/K2JVMCompilerArguments.java | 2 +- compiler/testData/cli/help.out | 2 +- compiler/testData/cli/wrongArgument.out | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/cli/src/org/jetbrains/jet/cli/jvm/K2JVMCompilerArguments.java b/compiler/cli/src/org/jetbrains/jet/cli/jvm/K2JVMCompilerArguments.java index fb38a760eea..283c2c2072d 100644 --- a/compiler/cli/src/org/jetbrains/jet/cli/jvm/K2JVMCompilerArguments.java +++ b/compiler/cli/src/org/jetbrains/jet/cli/jvm/K2JVMCompilerArguments.java @@ -43,7 +43,7 @@ public class K2JVMCompilerArguments extends CommonCompilerArguments { @Argument(value = "jar", description = "jar file name") public String jar; - @Argument(value = "src", description = "source file or directory") + @Argument(value = "src", description = "source file or directory (allows many paths separated by the system path separator)") public String src; @Argument(value = "classpath", description = "classpath to use when compiling") diff --git a/compiler/testData/cli/help.out b/compiler/testData/cli/help.out index 7b71ad45156..bc56fd35937 100644 --- a/compiler/testData/cli/help.out +++ b/compiler/testData/cli/help.out @@ -1,6 +1,6 @@ Usage: org.jetbrains.jet.cli.jvm.K2JVMCompilerArguments -jar [String] jar file name - -src [String] source file or directory + -src [String] source file or directory (allows many paths separated by the system path separator) -classpath [String] classpath to use when compiling -annotations [String] paths to external annotations -includeRuntime [flag] include Kotlin runtime in to resulting jar diff --git a/compiler/testData/cli/wrongArgument.out b/compiler/testData/cli/wrongArgument.out index 687b7245532..fd4d56f3350 100644 --- a/compiler/testData/cli/wrongArgument.out +++ b/compiler/testData/cli/wrongArgument.out @@ -1,7 +1,7 @@ Invalid argument: -wrongArgument Usage: org.jetbrains.jet.cli.jvm.K2JVMCompilerArguments -jar [String] jar file name - -src [String] source file or directory + -src [String] source file or directory (allows many paths separated by the system path separator) -classpath [String] classpath to use when compiling -annotations [String] paths to external annotations -includeRuntime [flag] include Kotlin runtime in to resulting jar