From 0d07c901921eb47a73979b3cca10b2b92dadbb74 Mon Sep 17 00:00:00 2001 From: slavos1 Date: Fri, 9 Sep 2022 21:06:32 +1000 Subject: [PATCH] Fix missing contributors in GH Actions runs #1040 --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 61aa55a23..c32b9e3a5 100644 --- a/Rakefile +++ b/Rakefile @@ -53,7 +53,7 @@ namespace :book do file 'book/contributors.txt' do puts 'Generating contributors list' sh "echo 'Contributors as of #{header_hash}:\n' > book/contributors.txt" - sh "git shortlog -s | grep -v -E '(Straub|Chacon|dependabot)' | cut -f 2- | column -c 120 >> book/contributors.txt" + sh "git shortlog -s HEAD | grep -v -E '(Straub|Chacon|dependabot)' | cut -f 2- | column -c 120 >> book/contributors.txt" end desc 'build HTML format'