// normalize weird paths

This commit is contained in:
Reinhard Pointner 2016-04-01 13:04:13 +00:00
parent 20c94f02d2
commit b817d146a4
1 changed files with 1 additions and 0 deletions

View File

@ -1118,6 +1118,7 @@ public class CmdlineOperations implements CmdlineInterface {
if (!outputFolder.isAbsolute()) {
outputFolder = new File(file.getParentFile(), outputFolder.getPath());
}
outputFolder = outputFolder.getCanonicalFile(); // normalize weird paths
log.info(format("Read archive [%s] and extract to [%s]", file.getName(), outputFolder));
final FileMapper outputMapper = new FileMapper(outputFolder);