summaryrefslogtreecommitdiff
path: root/cgit-fix-timestamp-single.sh
blob: 8917305a9c550719059018fc419482bfae0d1954 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh

agefile="$(git rev-parse --git-dir)"/info/web/last-modified

mkdir -p "$(dirname "$agefile")" &&
git for-each-ref \
	--sort=-authordate --count=1 \
	--format='%(authordate:iso8601)' \
	>"$agefile"