mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Tell 7zip not to use so many threads
This commit is contained in:
parent
7c567da334
commit
fb61b85b7f
@ -145,7 +145,7 @@ namespace Wabbajack.Common
|
||||
var info = new ProcessStartInfo
|
||||
{
|
||||
FileName = @"Extractors\7z.exe",
|
||||
Arguments = $"x -bsp1 -y -o\"{dest}\" \"{source}\"",
|
||||
Arguments = $"x -bsp1 -y -o\"{dest}\" \"{source}\" -mmt=off",
|
||||
RedirectStandardError = true,
|
||||
RedirectStandardInput = true,
|
||||
RedirectStandardOutput = true,
|
||||
@ -209,7 +209,7 @@ namespace Wabbajack.Common
|
||||
{
|
||||
var info = new ProcessStartInfo
|
||||
{
|
||||
FileName = "innounp.exe",
|
||||
FileName = @"Extractors\innounp.exe",
|
||||
Arguments = $"-t \"{v}\" ",
|
||||
RedirectStandardError = true,
|
||||
RedirectStandardInput = true,
|
||||
@ -243,7 +243,7 @@ namespace Wabbajack.Common
|
||||
|
||||
var testInfo = new ProcessStartInfo
|
||||
{
|
||||
FileName = "7z.exe",
|
||||
FileName = @"Extractors\7z.exe",
|
||||
Arguments = $"t \"{v}\"",
|
||||
RedirectStandardError = true,
|
||||
RedirectStandardInput = true,
|
||||
|
Loading…
Reference in New Issue
Block a user