Browse Source

update attribute of zip had the wrong default value (my fault).

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

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

@@ -78,7 +78,7 @@ public class Zip extends MatchingTask {
private File zipFile; private File zipFile;
private File baseDir; private File baseDir;
private boolean doCompress = true; private boolean doCompress = true;
private boolean doUpdate = true;
private boolean doUpdate = false;
private boolean doFilesonly = false; private boolean doFilesonly = false;
protected String archiveType = "zip"; protected String archiveType = "zip";
// For directories: // For directories:


Loading…
Cancel
Save