https://issues.apache.org/bugzilla/show_bug.cgi?id=51802
Bug #: 51802
Summary: Zip task doesn't overwrite the file when update=false
and all 'current' resources are up-to-date
Product: Ant
Version: 1.8.2
Platform: PC
OS/Version: Windows XP
Status: NEW
Severity: normal
Priority: P2
Component: Core tasks
AssignedTo: [email protected]
ReportedBy: [email protected]
Classification: Unclassified
When update is false, the zip should always be built from scratch. Currently
it does a quick check at the top to see if the 'current' resources are
up-to-date. This does not take into account resources which are in the
existing zip, but shouldn't be any more. Also, this quick check causes no
update of the zip comment or timestamp. I think we need at least this
'doUpdate' change:
// quick exit if the target is up to date
if (doUpdate && !state.isOutOfDate()) {
return;
}
Additionally it would be nice if this test could also consider if the comment
needs to be updated.
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.