mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Merge pull request #455 from wabbajack-tools/issue-440
Tell 7zip not to use so many threads
This commit is contained in:
commit
8991aa2ea7
@ -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,
|
||||
@ -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