Skip to content

Commit ebd1ae8

Browse files
committed
Suppress echoing commands for the meta-data/dates recipe
1 parent 76142d0 commit ebd1ae8

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,15 +116,16 @@ dates: meta-data/dates
116116

117117
# Generate file with issue number and unix timestamp of last change.
118118
meta-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

130131
new-papers:

0 commit comments

Comments
 (0)