fixed linux being broken
This commit is contained in:
parent
164780363b
commit
bbc6af247b
Binary file not shown.
|
@ -88,6 +88,7 @@ public override string BuildModule(Module module)
|
||||||
|
|
||||||
Process p = Process.Start(info);
|
Process p = Process.Start(info);
|
||||||
p.WaitForExit();
|
p.WaitForExit();
|
||||||
|
p.Close();
|
||||||
|
|
||||||
info.WorkingDirectory = PropSlashes(dir);
|
info.WorkingDirectory = PropSlashes(dir);
|
||||||
info.FileName = m_Cfg.DevenvPath();
|
info.FileName = m_Cfg.DevenvPath();
|
||||||
|
@ -113,6 +114,7 @@ public override string BuildModule(Module module)
|
||||||
info.FileName = dlsym;
|
info.FileName = dlsym;
|
||||||
info.Arguments = file;
|
info.Arguments = file;
|
||||||
info.UseShellExecute = false;
|
info.UseShellExecute = false;
|
||||||
|
info.RedirectStandardOutput = true;
|
||||||
|
|
||||||
p = Process.Start(info);
|
p = Process.Start(info);
|
||||||
p.WaitForExit();
|
p.WaitForExit();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user