Browse Source

Currently myrmidon uses myrmidon.home rather than ant.home

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270530 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
7986eeaf40
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/exec/Execute.java
  2. +1
    -1
      proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/exec/Execute.java

+ 1
- 1
proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/exec/Execute.java View File

@@ -41,7 +41,7 @@ public class Execute

private static File getAntHomeDirectory()
{
final String antHome = System.getProperty( "ant.home" );
final String antHome = System.getProperty( "myrmidon.home" );
if( null == antHome )
{
final String message =


+ 1
- 1
proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/exec/Execute.java View File

@@ -41,7 +41,7 @@ public class Execute

private static File getAntHomeDirectory()
{
final String antHome = System.getProperty( "ant.home" );
final String antHome = System.getProperty( "myrmidon.home" );
if( null == antHome )
{
final String message =


Loading…
Cancel
Save