Fix mod downloading, more descriptive sandbox error message

This commit is contained in:
John Gross
2019-10-26 11:38:38 -07:00
parent 52ef0b4d6d
commit cc91fa3653
4 changed files with 12 additions and 9 deletions

View File

@@ -216,11 +216,11 @@ quit";
StandardOutputEncoding = Encoding.ASCII
};
var cmd = Process.Start(steamCmdProc);
// ReSharper disable once PossibleNullReferenceException
while (!cmd.HasExited)
{
log.Info(cmd.StandardOutput.ReadLine());
log.Info(cmd.StandardOutput.ReadToEnd());
Thread.Sleep(100);
}
}