Browse Source

add missing process start

pull/55/head
Ionite 1 year ago
parent
commit
ff1c775295
No known key found for this signature in database
  1. 2
      StabilityMatrix.Core/Helper/ArchiveHelper.cs

2
StabilityMatrix.Core/Helper/ArchiveHelper.cs

@ -92,7 +92,7 @@ public static partial class ArchiveHelper
UseShellExecute = false, UseShellExecute = false,
CreateNoWindow = true CreateNoWindow = true
}; };
process.Start();
await ProcessRunner.WaitForExitConditionAsync(process); await ProcessRunner.WaitForExitConditionAsync(process);
var output = await process.StandardOutput.ReadToEndAsync(); var output = await process.StandardOutput.ReadToEndAsync();

Loading…
Cancel
Save