You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bo...@apache.org on 2003/09/25 16:51:07 UTC

cvs commit: ant/src/main/org/apache/tools/ant/taskdefs Execute.java

bodewig     2003/09/25 07:51:07

  Modified:    src/main/org/apache/tools/ant/taskdefs Execute.java
  Log:
  The user.dir trick doesn't seem to work on OS X anymore, PR 23400
  
  Revision  Changes    Path
  1.70      +2 -2      ant/src/main/org/apache/tools/ant/taskdefs/Execute.java
  
  Index: Execute.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/Execute.java,v
  retrieving revision 1.69
  retrieving revision 1.70
  diff -u -r1.69 -r1.70
  --- Execute.java	25 Sep 2003 12:36:19 -0000	1.69
  +++ Execute.java	25 Sep 2003 14:51:07 -0000	1.70
  @@ -124,7 +124,7 @@
               // Ignore and keep trying
           }
   
  -        if (Os.isFamily("mac")) {
  +        if (Os.isFamily("mac") && !Os.isFamily("unix")) {
               // Mac
               shellLauncher = new MacCommandLauncher(new CommandLauncher());
           } else if (Os.isFamily("os/2")) {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org