mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-15 13:55:03 -05:00
// normalize weird paths
This commit is contained in:
parent
20c94f02d2
commit
b817d146a4
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user