From 5071ea1ff373e0bca579047bfba58f498c9f0f70 Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Tue, 14 Oct 2025 16:26:33 -0400 Subject: add update-timestamps --- update-timestamps | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 update-timestamps diff --git a/update-timestamps b/update-timestamps new file mode 100755 index 0000000..34ec6a2 --- /dev/null +++ b/update-timestamps @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +REPOSITORIES=$(find /home/git/* -name '*.git' -type d) + +for repo in $REPOSITORIES; do + cd $repo + mkdir -p info/web + echo $(git log -1 --date=iso --format=%ci) > info/web/last-modified +done -- cgit v1.2.3