File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -116,15 +116,16 @@ dates: meta-data/dates
116116
117117# Generate file with issue number and unix timestamp of last change.
118118meta-data/dates : xml/issue[0-9]* .xml
119- for i in xml/issue[0-9]* .xml ; do \
119+ @echo " Refreshing 'Last modified' timestamps for issues..."
120+ @for i in xml/issue[0-9]* .xml ; do \
120121 n=" $$ {i#xml/issue}" ; n=" $$ {n%.xml}" ; \
121122 grep -s -q " ^$$ n " $@ && test $$ i -ot $@ && continue ; \
122123 echo $$ i >&2 ; \
123124 git log -1 --pretty=" format:$$ n %ct%n" $$ i ; \
124125 done > $@ .new
125- cat $@ $@ .new | sort -n -r | sort -n -k 1 -u > $@ .tmp
126- rm $@ .new
127- $(call update,$@ )
126+ @ cat $@ $@ .new | sort -n -r | sort -n -k 1 -u > $@ .tmp
127+ @ rm $@ .new
128+ @ $(call update,$@ )
128129
129130
130131new-papers :
You can’t perform that action at this time.
0 commit comments