Tests: Better message for contributors.

This commit is contained in:
Wilson Snyder 2020-01-14 17:49:04 -05:00
parent af38e8d387
commit 47803c3591
1 changed files with 4 additions and 1 deletions

View File

@ -34,7 +34,10 @@ sub check {
for my $author (sort keys %Authors) {
print "Check: $author\n" if $Self->{verbose};
if (!$Contributors{$author}) {
error("Certify your contribution by appending '$author' to CONTRIBUTORS");
error("Certify your contribution by appending '$author' to docs/CONTRIBUTORS.\n"
." If '$author' is not your real name, please fix 'name=' in ~/.gitconfig\n"
." Also check your https://github.com account's Settings->Profile->Name\n"
." matches your ~/.gitconfig 'name='.\n");
}
}
}