totally wrong place, i'm stupid --bail

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40474
This commit is contained in:
David Anderson 2007-02-12 05:43:14 +00:00
parent c5e98f7dc2
commit 2747f06eb7
2 changed files with 11 additions and 10 deletions

View File

@ -29,11 +29,6 @@ namespace builder
info.Arguments = "zcvf \"" + name + "\" \"" + ltarget + "\"";
info.UseShellExecute = false;
if (cfg.BuildOptions != null)
{
info.Arguments += " " + cfg.BuildOptions;
}
Process p = Process.Start(info);
p.WaitForExit();
@ -96,6 +91,12 @@ namespace builder
info.FileName = cfg.BuilderPath;
info.Arguments = "";
info.UseShellExecute = false;
if (cfg.BuildOptions != null)
{
info.Arguments += " " + cfg.BuildOptions;
}
p = Process.Start(info);
p.WaitForExit();
p.Close();

View File

@ -29,11 +29,6 @@ namespace builder
info.Arguments = "-r \"" + name + "\" \"" + ltarget + "\"";
info.UseShellExecute = false;
if (cfg.BuildOptions != null)
{
info.Arguments += " " + cfg.BuildOptions;
}
Process p = Process.Start(info);
p.WaitForExit();
@ -83,6 +78,11 @@ namespace builder
info.Arguments = "/rebuild " + lib.ReleaseBuild + " " + projectFile;
info.UseShellExecute = false;
if (cfg.BuildOptions != null)
{
info.Arguments += " " + cfg.BuildOptions;
}
Process p = Process.Start(info);
p.WaitForExit();
p.Close();