Skip to content

Commit 671297c

Browse files
timsong-cppjwakely
authored andcommitted
switch to using git log --raw
1 parent f31f2aa commit 671297c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ meta-data/dates: xml/issue[0-9]*.xml bin/make_dates.py
136136
rm $@.new; \
137137
$(call update,$@); \
138138
else \
139-
git whatchanged --no-show-signature --pretty=%ct | $(python) bin/make_dates.py > $@; \
139+
git log --raw --no-show-signature --pretty=%ct | $(python) bin/make_dates.py > $@; \
140140
fi
141141

142142
new-papers:

bin/make_dates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/python
22

3-
# usage: git whatchanged --no-show-signature --pretty=%ct | python bin/make_dates.py > dates
3+
# usage: git log --raw --no-show-signature --pretty=%ct | python bin/make_dates.py > dates
44

55
import sys
66
import re

0 commit comments

Comments
 (0)