aboutsummaryrefslogtreecommitdiff
path: root/reproduce/analysis/make/initialize.mk
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2020-11-23 03:00:05 +0000
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2020-11-23 03:00:05 +0000
commit94cbed6c63ad4362547b4cbcc579c63937a780a6 (patch)
treeffe1c322eb48286725d92bf2f16e43579fcd4658 /reproduce/analysis/make/initialize.mk
parent7692033f87b4c0326f655b7c73d361e6d318294a (diff)
First draft of all the points addressed by the referees
A new directory has been added at the top of the project's source called 'peer-review'. The raw reviews of the paper by the editors and referees has been added there as '1-review.txt'. All the main points raised by the referees have been listed in a numbered list and addressed (mostly) in '1-answers.txt'. The text of the paper now also includes all the implemented answers to the various points.
Diffstat (limited to 'reproduce/analysis/make/initialize.mk')
-rw-r--r--reproduce/analysis/make/initialize.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/reproduce/analysis/make/initialize.mk b/reproduce/analysis/make/initialize.mk
index 9ce157d..6431863 100644
--- a/reproduce/analysis/make/initialize.mk
+++ b/reproduce/analysis/make/initialize.mk
@@ -506,3 +506,9 @@ $(mtexdir)/initialize.tex: | $(mtexdir)
# case, we'll just return the string a clear string.
v=$$(git describe --always --long maneage) || v=maneage-ref-missing
echo "\newcommand{\maneageversion}{$$v}" >> $@
+
+ # Get the date of the most recent commit from the Maneage
+ # branch. Note that with '%aD', the format looks like this:
+ # Wed, 9 Sep 2020 10:08:20 +0200
+ v=$$(git show -s --format=%aD $$v | awk '{print $$2, $$3, $$4}')
+ echo "\newcommand{\maneagedate}{$$v}" >> $@