]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/lint-man-end-blurb.perl
Merge branch 'ab/getcwd-test'
[thirdparty/git.git] / Documentation / lint-man-end-blurb.perl
CommitLineData
cafd9828
ÆAB
1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6my $exit_code = 0;
7sub report {
8 my ($target, $msg) = @_;
9 print "error: $target: $msg\n";
10 $exit_code = 1;
11}
12
13local $/;
14while (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
20 \z
21 ]mx;
22}
23
24exit $exit_code;