1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +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();
if (process.Start(startInfo) case .Err)
{
OutputLine("Failed to execute \"{0}\"", inFileName);
OutputErrorLine("Failed to execute \"{0}\"", inFileName);
delete process;
delete executionInstance;
return null;