mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-07 16:52:50 +00:00
Merge branch 'master' of https://github.com/sgetaz/Cosmos.git
This commit is contained in:
commit
f6b9f4528e
1 changed files with 9 additions and 7 deletions
|
|
@ -10,13 +10,15 @@ namespace Cosmos.Build.Installer {
|
||||||
|
|
||||||
public void Run() {
|
public void Run() {
|
||||||
var exceptions = DoRun();
|
var exceptions = DoRun();
|
||||||
Log.NewSection("Error");
|
if (exceptions.Count > 0) {
|
||||||
//Collect all the exceptions from the build stage, and list them
|
Log.NewSection("Error");
|
||||||
foreach(var msg in exceptions)
|
//Collect all the exceptions from the build stage, and list them
|
||||||
{
|
foreach(var msg in exceptions) {
|
||||||
Log.WriteLine(msg);
|
Log.WriteLine(msg);
|
||||||
|
}
|
||||||
|
Log.SetError();
|
||||||
}
|
}
|
||||||
Log.SetError();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool AmRunning32Bit() {
|
public bool AmRunning32Bit() {
|
||||||
|
|
@ -167,4 +169,4 @@ namespace Cosmos.Build.Installer {
|
||||||
mLog.WriteLine(aText);
|
mLog.WriteLine(aText);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue