From f090607f6700ecc21fb8c73741d17ad34b769300 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Mon, 16 Jun 2025 15:52:20 -0600 Subject: [PATCH] Add build time to end of the page comments. --- pages/photos.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pages/photos.sh b/pages/photos.sh index 2924752..eb5746c 100755 --- a/pages/photos.sh +++ b/pages/photos.sh @@ -291,10 +291,16 @@ function build_all_page { } ## Main ## +beg_time="$SECONDS" + start_main_page build_album_pages build_all_page end_main_page +end_time="$SECONDS" +time="$(( $end_time - $beg_time ))" +echo "" >> $mainpage + cat $mainpage exit 0