Browse Source

fix checksum's handling of nested filesets.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269969 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 23 years ago
parent
commit
60f1c746a3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/Checksum.java

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

@@ -299,7 +299,7 @@ public class Checksum extends MatchingTask implements Condition {
DirectoryScanner ds = fs.getDirectoryScanner(project);
String[] srcFiles = ds.getIncludedFiles();
for (int j = 0; j < srcFiles.length; j++) {
File src = new File(srcFiles[j]);
File src = new File(fs.getDir(project), srcFiles[j]);
addToIncludeFileMap(src);
}
}


Loading…
Cancel
Save