From: Michael Tremer Date: Tue, 22 Mar 2011 14:14:09 +0000 (+0100) Subject: Add groulist command to pakfire-build command. X-Git-Tag: 0.9.3~59 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2c84aceb8b5adc7bbddb2ad349b32fa173168629;p=pakfire.git Add groulist command to pakfire-build command. --- diff --git a/pakfire/cli.py b/pakfire/cli.py index b7c6115e9..2241fcc3d 100644 --- a/pakfire/cli.py +++ b/pakfire/cli.py @@ -257,6 +257,7 @@ class CliBuilder(Cli): self.parse_command_shell() self.parse_command_update() self.parse_command_provides() + self.parse_command_grouplist() self.parse_command_repolist() # Finally parse all arguments from the command line and save them. @@ -276,6 +277,7 @@ class CliBuilder(Cli): "search" : self.handle_search, "shell" : self.handle_shell, "provides" : self.handle_provides, + "grouplist" : self.handle_grouplist, "repolist" : self.handle_repolist, }