Skip to content

Commit

Permalink
don't just wait 10 seconds when extracting a Library bundle. It may b…
Browse files Browse the repository at this point in the history
…e huge or you're running on a slow box and you'll get a b0rked extract. Just let 7ZIP complete.
  • Loading branch information
GerHobbelt committed Nov 3, 2019
1 parent 4184e0c commit 6a8dda0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ internal static void Install(BundleLibraryManifest manifest, string library_bund
{
using (ProcessOutputReader process_output_reader = new ProcessOutputReader(process))
{
process.WaitForExit(10000);
process.WaitForExit();

Logging.Info("7ZIP Log Bundle Install progress:\n{0}", process_output_reader.GetOutputsDumpString());
}
Expand Down

0 comments on commit 6a8dda0

Please sign in to comment.