From 3ef0b3be958cda014a571e994bc76396c40081a5 Mon Sep 17 00:00:00 2001 From: abcdefg30 Date: Thu, 19 Jan 2023 23:04:17 +0100 Subject: [PATCH] Add the expected parameter(s) to the ExtractFilesCommand description --- OpenRA.Mods.Common/UtilityCommands/ExtractFilesCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/UtilityCommands/ExtractFilesCommand.cs b/OpenRA.Mods.Common/UtilityCommands/ExtractFilesCommand.cs index 3307e1f6d5..d46627f340 100644 --- a/OpenRA.Mods.Common/UtilityCommands/ExtractFilesCommand.cs +++ b/OpenRA.Mods.Common/UtilityCommands/ExtractFilesCommand.cs @@ -24,7 +24,7 @@ namespace OpenRA.Mods.Common.UtilityCommands return args.Length >= 2; } - [Desc("Extract files from mod packages to the current directory")] + [Desc("FILENAME", "[FILENAME...]", "Extract files from mod packages to the current directory")] void IUtilityCommand.Run(Utility utility, string[] args) { var files = args.Skip(1);