Fixed
Details
Assignee
Pothys - MitrahSoftPothys - MitrahSoftReporter
Matt LevineMatt Levine(Deactivated)Priority
CriticalFix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
NoneAffects versions
Details
Details
Assignee
Pothys - MitrahSoft
Pothys - MitrahSoftReporter
Matt Levine
Matt Levine(Deactivated)Priority
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
None
Affects versions
Created 27 January 2020 at 23:50
Updated 21 February 2022 at 13:02
Resolved 21 February 2022 at 13:02
This related to this issue https://luceeserver.atlassian.net/browse/LDEV-2052
As of now if you can unzip a entrypoint it will unzip it into your destination {destination}/{entrypoint} . However, everything in the {destination} directory will be deleted.
As I posted on the other ticket it would be great it this line:
https://github.com/lucee/Lucee/commit/58d7bc020e4c2690dd2218d2f515abbceecc0422#diff-e59c5fa4549e18de6be943907a50f597R442
if(target.exists() && overwrite) target.delete();
was changed to:
if(target.exists() && !target.isDirectory() && overwrite) target.delete();
That way you can unzip var entry points into the different zip into the same directory.
Thanks!