Fix editor exit with error code when game cooking CL fails

#2248
This commit is contained in:
Wojtek Figat
2024-02-21 23:18:09 +01:00
parent f20805e567
commit 318b00c617
5 changed files with 18 additions and 8 deletions

View File

@@ -1395,7 +1395,7 @@ namespace FlaxEditor
internal void BuildCommand(string arg)
{
if (TryBuildCommand(arg))
Engine.RequestExit();
Engine.RequestExit(1);
}
private bool TryBuildCommand(string arg)