From 69a1ffb7b925ca1d60471ea5941738f154c95fde Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Sat, 25 Apr 2026 09:39:15 +0100 Subject: [PATCH] fix build_loglog.bash bug where every entry has the same date --- capsule/build_loglog.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capsule/build_loglog.bash b/capsule/build_loglog.bash index f98e293..e4bf8a6 100644 --- a/capsule/build_loglog.bash +++ b/capsule/build_loglog.bash @@ -87,7 +87,7 @@ trim_entries() append_entries_for_date() { DATE_DIR="$1" - DATE="$(echo "$DATE" | sed "s/.*\///g")" + DATE="$(echo "$DATE_DIR" | sed "s/.*\///g")" echo "## $DATE " >> "$LOGLOG" ENTRY_COUNT="$(ls $DATE_DIR | wc -l)"