// normalize weird paths
This commit is contained in:
parent
20c94f02d2
commit
b817d146a4
|
@ -1118,6 +1118,7 @@ public class CmdlineOperations implements CmdlineInterface {
|
||||||
if (!outputFolder.isAbsolute()) {
|
if (!outputFolder.isAbsolute()) {
|
||||||
outputFolder = new File(file.getParentFile(), outputFolder.getPath());
|
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));
|
log.info(format("Read archive [%s] and extract to [%s]", file.getName(), outputFolder));
|
||||||
final FileMapper outputMapper = new FileMapper(outputFolder);
|
final FileMapper outputMapper = new FileMapper(outputFolder);
|
||||||
|
|
Loading…
Reference in New Issue