Repository: maven
Updated Branches:
  refs/heads/master 21d674638 -> 7f0e1b753


[MNG-5891] Log file command line option description contains an extra word

Signed-off-by: Michael Osipov <[email protected]>


Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/7f0e1b75
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/7f0e1b75
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/7f0e1b75

Branch: refs/heads/master
Commit: 7f0e1b753868aa3baa146b34e5a1f9e4dc679eac
Parents: 21d6746
Author: Keith Turner <[email protected]>
Authored: Fri Sep 18 17:55:25 2015 -0400
Committer: Michael Osipov <[email protected]>
Committed: Mon Sep 21 20:47:02 2015 +0200

----------------------------------------------------------------------
 maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/7f0e1b75/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
----------------------------------------------------------------------
diff --git a/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java 
b/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
index e4265ee..b870c66 100644
--- a/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
+++ b/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
@@ -135,7 +135,7 @@ public class CLIManager
         options.addOption( OptionBuilder.withLongOpt( "projects" 
).withDescription( "Comma-delimited list of specified reactor projects to build 
instead of all projects. A project can be specified by [groupId]:artifactId or 
by its relative path." ).hasArg().create( PROJECT_LIST ) );
         options.addOption( OptionBuilder.withLongOpt( "also-make" 
).withDescription( "If project list is specified, also build projects required 
by the list" ).create( ALSO_MAKE ) );
         options.addOption( OptionBuilder.withLongOpt( "also-make-dependents" 
).withDescription( "If project list is specified, also build projects that 
depend on projects on the list" ).create( ALSO_MAKE_DEPENDENTS ) );
-        options.addOption( OptionBuilder.withLongOpt( "log-file" 
).hasArg().withDescription( "Log file to where all build output will go." 
).create( LOG_FILE ) );
+        options.addOption( OptionBuilder.withLongOpt( "log-file" 
).hasArg().withDescription( "Log file where all build output will go." 
).create( LOG_FILE ) );
         options.addOption( OptionBuilder.withLongOpt( "show-version" 
).withDescription( "Display version information WITHOUT stopping build" 
).create( SHOW_VERSION ) );
         options.addOption( OptionBuilder.withLongOpt( 
"encrypt-master-password" ).hasOptionalArg().withDescription( "Encrypt master 
security password" ).create( ENCRYPT_MASTER_PASSWORD ) );
         options.addOption( OptionBuilder.withLongOpt( "encrypt-password" 
).hasOptionalArg().withDescription( "Encrypt server password" ).create( 
ENCRYPT_PASSWORD ) );

Reply via email to