o Fixed doc about command to get help output from CLI (merged from r726541)

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@726545 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2008-12-14 21:50:39 +00:00
parent c744e7706e
commit c1498641cc
2 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ public class DefaultCoreErrorReporter
addTips( CoreErrorTips.getNoGoalsTips(), writer );
writer.write( NEWLINE );
writer.write( NEWLINE );
writer.write( "Use \"mvn -?\" to show general usage information about Maven's command line." );
writer.write( "Use \"mvn --help\" to show general usage information about Maven's command line." );
writer.write( NEWLINE );
writer.write( NEWLINE );

View File

@ -145,7 +145,7 @@ public class DefaultLifecycleExecutor
buffer.append( "Please see\n" );
buffer.append( "http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html\n" );
buffer.append( "for a complete description of available lifecycle phases.\n\n" );
buffer.append( "Use \"mvn -?\" to show general usage information about Maven's command line.\n\n" );
buffer.append( "Use \"mvn --help\" to show general usage information about Maven's command line.\n\n" );
throw new NoGoalsSpecifiedException( buffer.toString() );
}