Skip to content
Snippets Groups Projects
Commit a6ea8c59 authored by david_williams's avatar david_williams
Browse files

improve signing

parent bbbf7412
No related branches found
No related tags found
No related merge requests found
......@@ -237,14 +237,14 @@ public class UpdatePackPropertiesFile extends Task {
if (!entryName.equals(".") && !entryName.equals("..")) {
entryName = slashify(entryName, files[i].isDirectory());
if (files[i].isDirectory()) {
log(" Adding Directory Entry: " + entryName); //, Project.MSG_DEBUG);
log(" Adding Directory Entry: " + entryName, Project.MSG_DEBUG);
out.putNextEntry(new ZipEntry(entryName));
// now recurse through the directory
addDir(files[i], out, rootDirectory);
}
else {
FileInputStream in = new FileInputStream(files[i].getAbsolutePath());
log(" Adding: " + entryName); //, Project.MSG_DEBUG);
log(" Adding: " + entryName, Project.MSG_DEBUG);
out.putNextEntry(new ZipEntry(entryName));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment