Skip to content

Commit

Permalink
scripts/get_maintainer.pl: make --rolestats the default
Browse files Browse the repository at this point in the history
This script now requires a user to add --norolestats to the command line
so it's harder to feed the output of this script to programs that send
mass emails.

Update --help to correct command line defaults.

Change version to 0.26.

Signed-off-by: Joe Perches <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
JoePerches authored and torvalds committed Jan 13, 2011
1 parent b921c69 commit 7e1863a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/get_maintainer.pl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use strict;

my $P = $0;
my $V = '0.26-beta6';
my $V = '0.26';

use Getopt::Long qw(:config no_auto_abbrev);

Expand All @@ -40,7 +40,7 @@
my $output_multiline = 1;
my $output_separator = ", ";
my $output_roles = 0;
my $output_rolestats = 0;
my $output_rolestats = 1;
my $scm = 0;
my $web = 0;
my $subsystem = 0;
Expand Down Expand Up @@ -720,7 +720,8 @@ sub usage {
--help => show this help information
Default options:
[--email --git --m --n --l --multiline --pattern-depth=0 --remove-duplicates]
[--email --nogit --git-fallback --m --n --l --multiline -pattern-depth=0
--remove-duplicates --rolestats]
Notes:
Using "-f directory" may give unexpected results:
Expand Down

0 comments on commit 7e1863a

Please sign in to comment.