1
0
mirror of https://github.com/mitb-archive/filebot synced 2025-01-10 21:38:04 -05:00

-Dnet.filebot.archive.7z=/path/to/7z

This commit is contained in:
Reinhard Pointner 2018-06-03 19:10:30 +07:00
parent 5f8fb5ad2c
commit 047eddfeb5

View File

@ -32,7 +32,7 @@ public class SevenZipExecutable implements ArchiveExtractor {
protected String get7zCommand() {
// use 7z executable path as specified by the cmdline or default to "7z" and let the shell figure it out
return System.getProperty("net.filebot.Archive.7z", "7z");
return System.getProperty("net.filebot.archive.7z", "7z");
}
protected CharSequence execute(String... command) throws IOException {