This is an automated email from the ASF dual-hosted git repository. asf-gitbox-commits pushed a commit to annotated tag 2.6.0-rc1 in repository https://gitbox.apache.org/repos/asf/ant-ivy.git
commit 8644f1b12e17ec1d5d013d7ef84cc830ff5a6bf5 Author: Maarten Coene <[email protected]> AuthorDate: Wed Feb 18 18:02:50 2026 +0100 Use pattern --- .../org/apache/ivy/plugins/resolver/packager/PackagerCacheEntry.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/ivy/plugins/resolver/packager/PackagerCacheEntry.java b/src/java/org/apache/ivy/plugins/resolver/packager/PackagerCacheEntry.java index b262e55c..e2414f00 100644 --- a/src/java/org/apache/ivy/plugins/resolver/packager/PackagerCacheEntry.java +++ b/src/java/org/apache/ivy/plugins/resolver/packager/PackagerCacheEntry.java @@ -237,7 +237,7 @@ public class PackagerCacheEntry { } private static File getSubdir(File rootDir, ModuleRevisionId mr) { - return new File(rootDir, mr.getOrganisation() + File.separatorChar + mr.getName() - + File.separatorChar + mr.getRevision()); + String subDir = IvyPatternHelper.substitute("[organisation]/[module]/[revision]", mr); + return new File(rootDir, subDir); } }
