Currently edkrepo --help shows a listing of commands that is not in alphabetical order. This is confusing. This change makes the list shown in alphabetical order.
Cc: Ashley DeSimone <ashley.e.desim...@intel.com> Cc: Puja Pandya <puja.pan...@intel.com> Cc: Erik Bjorge <erik.c.bjo...@intel.com> Cc: Bret Barkelew <bret.barke...@microsoft.com> Cc: Philippe Mathieu-Daudé <phi...@redhat.com> Signed-off-by: Nate DeSimone <nathaniel.l.desim...@intel.com> --- edkrepo/commands/composite_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edkrepo/commands/composite_command.py b/edkrepo/commands/composite_command.py index b476445..ff53d3b 100644 --- a/edkrepo/commands/composite_command.py +++ b/edkrepo/commands/composite_command.py @@ -36,4 +36,4 @@ class CompositeCommand(object): command_names = [] for command in self._commands: command_names.append(command.get_metadata()['name']) - return command_names + return sorted(command_names) -- 2.25.2 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#56507): https://edk2.groups.io/g/devel/message/56507 Mute This Topic: https://groups.io/mt/72597195/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-