Browse Source

opening fencepost error fixed by Knut Wannheden

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278448 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 20 years ago
parent
commit
f40b51339c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/Execute.java

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

@@ -1153,7 +1153,7 @@ public class Execute {
// add the environment as logicals to the DCL script
if (env != null) {
int eqIndex;
for (int i = 1; i < env.length; i++) {
for (int i = 0; i < env.length; i++) {
eqIndex = env[i].indexOf('=');
if (eqIndex != -1) {
out.print("$ DEFINE/NOLOG ");


Loading…
Cancel
Save