Command-line

- Added missing exception catch
remove_typequeue v0.5.2
parent 078a971a67
commit e1e554d6ba

@ -34,7 +34,14 @@ struct compileCommand
void onExecute()
{
writeln("Compiling source file: "~sourceFile);
beginCompilation([sourceFile]);
try
{
beginCompilation([sourceFile]);
}
catch(TError t)
{
gprintln(t.msg, DebugType.ERROR);
}
}
}

Loading…
Cancel
Save