Skip to content

Commit 23cdcf0

Browse files
committed
Doing it the Path way
1 parent 7908a7d commit 23cdcf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exist-ant/src/main/java/org/exist/ant/XMLDBExtractTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ private void extractSubCollections(final Collection base, final String path) thr
185185
final String subdir;
186186

187187
if (path != null) {
188-
dir = destDir.resolve(path + File.separator + childCol);
188+
dir = destDir.resolve(path).resolve(childCol);
189189
subdir = path + File.separator + childCol;
190190
} else {
191191
subdir = childCol;

0 commit comments

Comments
 (0)