commit 32bd5ac16e798d229107eb1bcc7d377441e12098 Author: Pierre-Yves Chibon pingou@pingoured.fr Date: Tue Nov 26 19:59:16 2013 +0100
Oups, add the forgotten branch action that lists all the branches upon request
pkgdb-cli | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) --- diff --git a/pkgdb-cli b/pkgdb-cli index 33d3882..fd2318c 100755 --- a/pkgdb-cli +++ b/pkgdb-cli @@ -1140,6 +1140,12 @@ def setup_parser(): help="Deny the requested ACL") parser_update.set_defaults(func=do_update)
+ ## Update + parser_branch = subparsers.add_parser( + 'branch', + help='List the active branches') + parser_branch.set_defaults(func=do_branch) + return parser
packagedb-cli-commits@lists.stg.fedorahosted.org