Fixed: Don't fail if ldd doesn't exist

pull/4869/head
Qstick 4 years ago
parent be38ca4728
commit df18be2a4d

@ -109,18 +109,31 @@ namespace NzbDrone.Common.EnvironmentInfo
private static string RunAndCapture(string filename, string args) private static string RunAndCapture(string filename, string args)
{ {
Process p = new Process(); var processStartInfo = new ProcessStartInfo
p.StartInfo.FileName = filename; {
p.StartInfo.Arguments = args; FileName = filename,
p.StartInfo.UseShellExecute = false; Arguments = args,
p.StartInfo.CreateNoWindow = true; UseShellExecute = false,
p.StartInfo.RedirectStandardOutput = true; CreateNoWindow = true,
RedirectStandardOutput = true
};
p.Start(); var output = string.Empty;
try
{
using (var p = Process.Start(processStartInfo))
{
// To avoid deadlocks, always read the output stream first and then wait. // To avoid deadlocks, always read the output stream first and then wait.
string output = p.StandardOutput.ReadToEnd(); output = p.StandardOutput.ReadToEnd();
p.WaitForExit(1000); p.WaitForExit(1000);
}
}
catch (Exception)
{
output = string.Empty;
}
return output; return output;
} }

Loading…
Cancel
Save