Browse Source

nt->winnt

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278157 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 20 years ago
parent
commit
fc605cd185
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      docs/manual/CoreTasks/conditions.html
  2. +1
    -1
      src/etc/testcases/taskdefs/exec/exec.xml
  3. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/condition/Os.java

+ 1
- 1
docs/manual/CoreTasks/conditions.html View File

@@ -114,7 +114,7 @@ the tests succeed.
<li>os/2 (for OS/2)</li>
<li>tandem (for HP's NonStop Kernel - formerly Tandem)</li>
<li>win9x for Microsoft Windows 95 and 98, ME and CE</li>
<li>nt for Microsoft Windows NT-based systems, including Windows 2000, XP and
<li>winnt for Microsoft Windows NT-based systems, including Windows 2000, XP and
successors</li>
<li>z/os for z/OS and OS/390</li>
<li>os/400 for OS/400</li>


+ 1
- 1
src/etc/testcases/taskdefs/exec/exec.xml View File

@@ -344,7 +344,7 @@
</exec>
<exec executable="time"
failonerror="true"
osFamily="nt">
osFamily="winnt">
<arg value="/t" />
</exec>
</target>


+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/condition/Os.java View File

@@ -63,7 +63,7 @@ public class Os implements Condition {
/**
* OS family that can be tested for. {@value}
*/
public static final String FAMILY_NT = "nt";
public static final String FAMILY_NT = "winnt";
/**
* OS family that can be tested for. {@value}
*/


Loading…
Cancel
Save