]> git.ipfire.org Git - pakfire.git/commitdiff
Add groulist command to pakfire-build command.
authorMichael Tremer <michael.tremer@ipfire.org>
Tue, 22 Mar 2011 14:14:09 +0000 (15:14 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 22 Mar 2011 14:14:09 +0000 (15:14 +0100)
pakfire/cli.py

index b7c6115e9fd6484853ce65ada88880a6ef24b80d..2241fcc3dee7ef46e51d59b48e1551218391ada3 100644 (file)
@@ -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,
                }