for the patch.
svn path=/main/trunk/; revision=10756
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',
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: