Added some redirection and exception handling
--HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40692
This commit is contained in:
parent
ccdddc16fb
commit
9542cf5113
@ -33,7 +33,14 @@ namespace builder
|
||||
bld = new Win32Builder(cfg);
|
||||
}
|
||||
|
||||
bld.BuildPackage(new PkgCore());
|
||||
try
|
||||
{
|
||||
bld.BuildPackage(new PkgCore());
|
||||
}
|
||||
catch (System.Exception e)
|
||||
{
|
||||
Console.WriteLine("Build failed: " + e.Message);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -76,6 +76,8 @@ namespace builder
|
||||
info.WorkingDirectory = path;
|
||||
info.FileName = cfg.BuilderPath;
|
||||
info.UseShellExecute = false;
|
||||
info.RedirectStandardOutput = true;
|
||||
info.RedirectStandardError = true;
|
||||
|
||||
if (cfg.BuildOptions != null)
|
||||
{
|
||||
@ -85,6 +87,7 @@ namespace builder
|
||||
info.Arguments += "/rebuild " + lib.ReleaseBuild + " " + projectFile;
|
||||
|
||||
Process p = Process.Start(info);
|
||||
Console.WriteLine(p.StandardOutput.ReadToEnd());
|
||||
p.WaitForExit();
|
||||
p.Close();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user