1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00

Make "Failed to execute" a nice red error

This commit is contained in:
Brian Fiete 2024-02-04 07:34:29 -05:00
parent ec2602f3b0
commit b722614501

View file

@ -8862,7 +8862,7 @@ namespace IDE
SpawnedProcess process = new SpawnedProcess(); SpawnedProcess process = new SpawnedProcess();
if (process.Start(startInfo) case .Err) if (process.Start(startInfo) case .Err)
{ {
OutputLine("Failed to execute \"{0}\"", inFileName); OutputErrorLine("Failed to execute \"{0}\"", inFileName);
delete process; delete process;
delete executionInstance; delete executionInstance;
return null; return null;