1

Add a script to fix gitweb last-modified date

This commit is contained in:
Evan Pratten 2023-11-18 20:37:41 -05:00
parent fa2248c98a
commit e7ede8aff4

View File

@ -0,0 +1,7 @@
#! /bin/bash
set -e
LAST_MODIFIED_FILE="$(git rev-parse --git-dir)"/info/web/last-modified
mkdir -p "$(dirname "$LAST_MODIFIED_FILE")"
git for-each-ref --sort=-authordate --count=1 --format='%(authordate:iso8601)' >"$LAST_MODIFIED_FILE"