From 39acb90dbcd50eabdb9b94b1d8e97eac0616f0d5 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 6 Oct 2025 08:50:21 -0400 Subject: [PATCH] Use All help by default instead of top-level only --- SabreTools.CommandLine/CommandSet.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SabreTools.CommandLine/CommandSet.cs b/SabreTools.CommandLine/CommandSet.cs index 95bc6b3..7932216 100644 --- a/SabreTools.CommandLine/CommandSet.cs +++ b/SabreTools.CommandLine/CommandSet.cs @@ -891,7 +891,7 @@ namespace SabreTools.CommandLine // If there's no arguments, show help if (args.Length == 0) { - OutputGenericHelp(); + OutputAllHelp(); return true; }