From fddbfa963dc1bf0fc9d7aa1081182e3dfc2535aa Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 6 Oct 2025 07:19:41 -0400 Subject: [PATCH] Directly return result of execution --- SabreTools.CommandLine/CommandSet.cs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/SabreTools.CommandLine/CommandSet.cs b/SabreTools.CommandLine/CommandSet.cs index 1230bc0..95bc6b3 100644 --- a/SabreTools.CommandLine/CommandSet.cs +++ b/SabreTools.CommandLine/CommandSet.cs @@ -934,14 +934,7 @@ namespace SabreTools.CommandLine } // Now execute the current feature - if (!feature.Execute()) - { - Console.Error.WriteLine("An error occurred during processing!"); - OutputFeatureHelp(topLevel.Name); - return false; - } - - return true; + return feature.Execute(); } #endregion