From d847bed5797988e94bf275ffa0279c72a501b70b Mon Sep 17 00:00:00 2001 From: timsong-cpp Date: Sat, 23 Aug 2025 20:56:26 -0500 Subject: [PATCH] switch to using git log --raw --- Makefile | 2 +- bin/make_dates.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ac9a01da0f..4847cb00c7 100644 --- a/Makefile +++ b/Makefile @@ -136,7 +136,7 @@ meta-data/dates: xml/issue[0-9]*.xml bin/make_dates.py rm $@.new; \ $(call update,$@); \ else \ - git whatchanged --no-show-signature --pretty=%ct | $(python) bin/make_dates.py > $@; \ + git log --raw --no-show-signature --pretty=%ct | $(python) bin/make_dates.py > $@; \ fi new-papers: diff --git a/bin/make_dates.py b/bin/make_dates.py index e57750c56d..6c601b8b58 100644 --- a/bin/make_dates.py +++ b/bin/make_dates.py @@ -1,6 +1,6 @@ #!/usr/bin/python -# usage: git whatchanged --no-show-signature --pretty=%ct | python bin/make_dates.py > dates +# usage: git log --raw --no-show-signature --pretty=%ct | python bin/make_dates.py > dates import sys import re