Browse Source

* Rename --myrmidon-home command-line arg to --ant-home.

* Change some usage messages.


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271293 13f79535-47bb-0310-9956-ffa450edef68
master
adammurdoch 23 years ago
parent
commit
584e6514a1
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      proposal/myrmidon/src/java/org/apache/myrmidon/frontends/CLIMain.java
  2. +2
    -2
      proposal/myrmidon/src/java/org/apache/myrmidon/frontends/Resources.properties

+ 2
- 2
proposal/myrmidon/src/java/org/apache/myrmidon/frontends/CLIMain.java View File

@@ -127,7 +127,7 @@ public class CLIMain
*/
private void usage( final CLOptionDescriptor[] options )
{
System.out.println( "java " + getClass().getName() + " [options]" );
System.out.println( "ant [options] [targets]" );
System.out.println( "\tAvailable options:" );
System.out.println( CLUtil.describeOptions( options ) );
}
@@ -191,7 +191,7 @@ public class CLIMain
INCREMENTAL_OPT,
REZ.getString( "incremental.opt" ) );
options[ 9 ] =
new CLOptionDescriptor( "myrmidon-home",
new CLOptionDescriptor( "ant-home",
CLOptionDescriptor.ARGUMENT_REQUIRED,
HOME_DIR_OPT,
REZ.getString( "home.opt" ) );


+ 2
- 2
proposal/myrmidon/src/java/org/apache/myrmidon/frontends/Resources.properties View File

@@ -9,8 +9,8 @@ listener.opt=Specify the listener for log events.
version.opt=Display version.
tasklib.opt=Specify the task lib directory to scan for .tsk files.
incremental.opt=Run in incremental mode.
home.opt=Specify myrmidon home directory.
define.opt=Define a variable (ie -Dfoo=var).
home.opt=Specify Ant home directory.
define.opt=Define a property (ie -Dfoo=var).
build.opt=Define a builder parameter (ie -Bfoo=var).
dry-run.opt=Do not execute tasks - just print them out.



Loading…
Cancel
Save