From 0c3373e9f087f54ca208eb21d4898c7a50fba61a Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 5 Oct 2025 23:26:13 -0400 Subject: [PATCH] Basically all cases should output help --- SabreTools.CommandLine/CommandSet.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SabreTools.CommandLine/CommandSet.cs b/SabreTools.CommandLine/CommandSet.cs index 78b7ee4..7b2fb42 100644 --- a/SabreTools.CommandLine/CommandSet.cs +++ b/SabreTools.CommandLine/CommandSet.cs @@ -908,7 +908,10 @@ namespace SabreTools.CommandLine // Now verify that all other flags are valid if (!feature.ProcessArgs(args, 1)) + { + OutputFeatureHelp(topLevel.Name); return false; + } // If inputs are required if (feature.RequiresInputs && !feature.VerifyInputs())