b4 by default calls the get_maintainer.pl script with the '--nogit-chief-penguins' option letting the 'b4 prep --auto-to-cc' fail. Adding parsing of that option without any related functionality to allow simple usage of b4 in the development workflow. Signed-off-by: Christoph Schlameuss --- Sorry, I am not too versed with perl, so if there are better ways to fix this please comment. --- scripts/get_maintainer.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl index 117b69145f0e..4d4ff4236f2f 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl @@ -31,6 +31,7 @@ my $email_fixes = 1; my $email_list = 1; my $email_moderated_list = 1; my $email_subscriber_list = 0; +my $email_git_penguin_chiefs = 0; my $email_git = 0; my $email_git_all_signature_types = 0; my $email_git_blame = 0; @@ -228,6 +229,7 @@ if (!GetOptions( 'git-blame!' => \$email_git_blame, 'git-blame-signatures!' => \$email_git_blame_signatures, 'git-fallback!' => \$email_git_fallback, + 'git-chief-penguins!' => \$email_git_penguin_chiefs, 'git-min-signatures=i' => \$email_git_min_signatures, 'git-max-maintainers=i' => \$email_git_max_maintainers, 'git-min-percent=i' => \$email_git_min_percent, -- 2.53.0