fixed a possible bad bug in linux builder
This commit is contained in:
parent
bbc6af247b
commit
c5e36a4e3c
Binary file not shown.
|
@ -117,10 +117,10 @@ public override string BuildModule(Module module)
|
||||||
info.RedirectStandardOutput = true;
|
info.RedirectStandardOutput = true;
|
||||||
|
|
||||||
p = Process.Start(info);
|
p = Process.Start(info);
|
||||||
|
string output = p.StandardOutput.ReadToEnd();
|
||||||
p.WaitForExit();
|
p.WaitForExit();
|
||||||
p.Close();
|
p.Close();
|
||||||
|
|
||||||
string output = p.StandardOutput.ReadToEnd();
|
|
||||||
if (output.IndexOf("Handle:") == -1)
|
if (output.IndexOf("Handle:") == -1)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user