Browse Source

Fixed bug in SignJar not properly handling nested filesets.

Submitted by:  Michael Bayne <mdb@samskivert.com>


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269927 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 24 years ago
parent
commit
6239084cd3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/SignJar.java

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

@@ -180,7 +180,7 @@ public class SignJar extends Task {
DirectoryScanner ds = fs.getDirectoryScanner(project);
String[] jarFiles = ds.getIncludedFiles();
for(int j=0; j<jarFiles.length; j++) {
doOneJar( new File( jarFiles[j] ), null);
doOneJar( new File( fs.getDir(project), jarFiles[j] ), null);
}
}
}


Loading…
Cancel
Save