aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/lint-man-end-blurb.perl
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2021-10-15 14:39:12 +0200
committerJunio C Hamano <gitster@pobox.com>2021-10-15 10:16:57 -0700
commitf005593dc313084675aebda4de02743c02ac409a (patch)
tree68673a5cfe2593ef0901255da8fc897a46659c8c /Documentation/lint-man-end-blurb.perl
parent7e19e2efa906b9598d4c2258f6f37eb1dfffffee (diff)
downloadgit-f005593dc313084675aebda4de02743c02ac409a.tar.gz
doc lint: emit errors on STDERR
Have all of the scripts invoked by "make check-docs" emit their output on STDERR. This does not currently matter due to the way we're invoking them, but will in a subsequent change. It's a good idea to do this in any case for consistency with other tools we invoke. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/lint-man-end-blurb.perl')
-rwxr-xr-xDocumentation/lint-man-end-blurb.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/lint-man-end-blurb.perl b/Documentation/lint-man-end-blurb.perl
index d69312e5db..6bdb13ad9f 100755
--- a/Documentation/lint-man-end-blurb.perl
+++ b/Documentation/lint-man-end-blurb.perl
@@ -6,7 +6,7 @@ use warnings;
my $exit_code = 0;
sub report {
my ($target, $msg) = @_;
- print "error: $target: $msg\n";
+ print STDERR "error: $target: $msg\n";
$exit_code = 1;
}