From b7226145012b9d6de04531cfec33364dad44c98d Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Sun, 4 Feb 2024 07:34:29 -0500 Subject: [PATCH] Make "Failed to execute" a nice red error --- IDE/src/IDEApp.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDE/src/IDEApp.bf b/IDE/src/IDEApp.bf index 84eb1048..57dc3560 100644 --- a/IDE/src/IDEApp.bf +++ b/IDE/src/IDEApp.bf @@ -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;