From dee74b874b44fb333af2eb7ee8a9dec097765c8a Mon Sep 17 00:00:00 2001 From: Harlan Stenn Date: Thu, 7 Nov 2024 00:13:48 -0600 Subject: [PATCH] Tweak checkAuthors.in bk: 672c5a9cwRZCeIpok-n40gf7p_Fdlw --- scripts/build/checkAuthors.in | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/build/checkAuthors.in b/scripts/build/checkAuthors.in index 90f9b76fd..00d092919 100755 --- a/scripts/build/checkAuthors.in +++ b/scripts/build/checkAuthors.in @@ -63,8 +63,11 @@ my $A_path = shift @ARGV; $problem = 0; if (! -r $A_file) { - warn "$A_file is not readable!\n"; - ++$problem; + my @args = ("bk", "get", "-q", $A_file); + unless (system(@args) == 0) { + warn "system @args failed: $?"; + ++$problem; + } } if (! -d $A_path) { -- 2.47.3