summaryrefslogtreecommitdiff
path: root/Porting/acknowledgements.pl
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2022-08-11 22:24:48 +0200
committerYves Orton <demerphq@gmail.com>2022-08-21 12:09:05 +0200
commit5658e307f40a186d7ba6def62b29243736489dba (patch)
tree937a50e1f1355edb156361e344fa0b439b9fba34 /Porting/acknowledgements.pl
parent6e68a58fb21675db9de0bfabcb1a62ec5f92dc42 (diff)
downloadperl-5658e307f40a186d7ba6def62b29243736489dba.tar.gz
checkAUTHORS.pl - delete and replace with updateAUTHORS.pl
updateAUTHORS.pl now can replace all the capabilities of checkAUTHORS.pl, and checkAUTHORS.pl has a slightly different idea of what needs to be validated, and is not aware of the Porting/exclude_contrib.txt. Instead of teaching it to be aware and maintaining two tools this drops checkAUTHORS.pl In the process we move the logic for t/porting/pending-author.t into t/porting/authors.t, by letting updateAUTHORS.pl do it as well. This is helpful because updateAUTHORS.pl contains similar core git logic so that it can implement some of its options.
Diffstat (limited to 'Porting/acknowledgements.pl')
-rw-r--r--Porting/acknowledgements.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/acknowledgements.pl b/Porting/acknowledgements.pl
index c0c7086011..e2bd107807 100644
--- a/Porting/acknowledgements.pl
+++ b/Porting/acknowledgements.pl
@@ -163,5 +163,5 @@ sub commify {
# returns a list of the authors
sub authors {
return
- qx(git log --pretty=fuller $since_until | $^X Porting/checkAUTHORS.pl --who -);
+ qx($^X Porting/updateAUTHORS.pl --who $since_until);
}