Add build time to end of the page comments.

This commit is contained in:
2025-06-16 15:52:20 -06:00
parent 1dccb10a45
commit f090607f67

View File

@ -291,10 +291,16 @@ function build_all_page {
} }
## Main ## ## Main ##
beg_time="$SECONDS"
start_main_page start_main_page
build_album_pages build_album_pages
build_all_page build_all_page
end_main_page end_main_page
end_time="$SECONDS"
time="$(( $end_time - $beg_time ))"
echo "<!-- Script took '$time' seconds to process. -->" >> $mainpage
cat $mainpage cat $mainpage
exit 0 exit 0