Merge branch 'rj/add-i-leak-fix'
[alt-git.git] / Documentation / lint-man-end-blurb.perl
blob6bdb13ad9fdb36b8c8f5244fa66fb29c0f619cc7
1 #!/usr/bin/perl
3 use strict;
4 use warnings;
6 my $exit_code = 0;
7 sub report {
8 my ($target, $msg) = @_;
9 print STDERR "error: $target: $msg\n";
10 $exit_code = 1;
13 local $/;
14 while (my $slurp = <>) {
15 report($ARGV, "has no 'Part of the linkgit:git[1] suite' end blurb")
16 unless $slurp =~ m[
17 ^GIT\n
18 ---\n
19 \QPart of the linkgit:git[1] suite\E \n
21 ]mx;
24 exit $exit_code;