Bug #228489 - Restore the "ci" alias for "commit" mode. Thanks to grobian
authorZac Medico <zmedico@gentoo.org>
Sat, 21 Jun 2008 17:11:54 +0000 (17:11 -0000)
committerZac Medico <zmedico@gentoo.org>
Sat, 21 Jun 2008 17:11:54 +0000 (17:11 -0000)
for the patch.

svn path=/main/trunk/; revision=10756

bin/repoman

index 5481c1e387acf7f26cf822520a10e40bf92f2911..3a1d5fa07785e667f9684fa9a3a93265b83c9534 100755 (executable)
@@ -147,6 +147,7 @@ def ParseArgs(args, qahelp):
 
        modes = {
                'commit' : 'Run a scan then commit changes',
+               'ci' : 'Run a scan then commit changes',
                'fix' : 'Fix simple QA issues (stray digests, missing digests)',
                'full' : 'Scan directory tree and print all issues (not a summary)',
                'help' : 'Show this screen',
@@ -225,6 +226,9 @@ def ParseArgs(args, qahelp):
 
        if not opts.mode:
                opts.mode = 'full'      #default to full
+       
+       if opts.mode == 'ci':
+               opts.mode = 'commit'  # backwards compat shortcut
 
        if opts.mode == 'commit' and not (opts.force or opts.pretend):
                if opts.ignore_masked: