Skip to content
Snippets Groups Projects
Commit bb2cbd63 authored by felmer's avatar felmer
Browse files

LMS-2070 bug fixed

SVN: 20196
parent 31874a80
No related branches found
No related tags found
No related merge requests found
...@@ -276,7 +276,7 @@ public class HierarchicalStorageUpdater implements IResourceContendingMaintenanc ...@@ -276,7 +276,7 @@ public class HierarchicalStorageUpdater implements IResourceContendingMaintenanc
File targetDir = new File(targetPath); File targetDir = new File(targetPath);
String sourcePath = linkMappings.get(targetPath); String sourcePath = linkMappings.get(targetPath);
File sourceFile = new File(sourcePath); File sourceFile = new File(sourcePath);
targetDir.mkdirs(); targetDir.getParentFile().mkdirs();
SoftLinkMaker.createSymbolicLink(sourceFile, targetDir); SoftLinkMaker.createSymbolicLink(sourceFile, targetDir);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment