summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Keating <jkeating@redhat.com>2010-08-11 21:15:32 -0700
committerJesse Keating <jkeating@redhat.com>2010-08-11 22:09:06 -0700
commit698c9e70460f0f74f3ed6872d9ae865e182aa739 (patch)
treed4a69c3d4fea8acc02ad4bb2b79f571d36158c97
parent6c15779a91007c5a8e1380a2c82391d49b9eda3a (diff)
downloadfedora-packager-698c9e70460f0f74f3ed6872d9ae865e182aa739.tar.gz
fedora-packager-698c9e70460f0f74f3ed6872d9ae865e182aa739.tar.xz
fedora-packager-698c9e70460f0f74f3ed6872d9ae865e182aa739.zip
Add ci as an alias to commit.
-rwxr-xr-xsrc/fedpkg.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/fedpkg.py b/src/fedpkg.py
index 656464e..aab1373 100755
--- a/src/fedpkg.py
+++ b/src/fedpkg.py
@@ -850,6 +850,11 @@ packages will be built sequentially.
help = 'Optional list of specific files to commit')
parser_commit.set_defaults(command = commit)
+ parser_ci = subparsers.add_parser('ci', parents = [parser_commit],
+ conflict_handler = 'resolve',
+ help = 'Alias for commit')
+ parser_ci.set_defaults(command = commit)
+
# compile locally
parser_compile = subparsers.add_parser('compile',
help = 'Local test rpmbuild compile')