totally wrong place, i'm stupid --bail
--HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40474
This commit is contained in:
parent
c5e98f7dc2
commit
2747f06eb7
@ -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();
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user