From 554071f7f4367d772e6f6227f1d5d9e709a901de Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Tue, 23 Apr 2024 12:01:17 -0400 Subject: [PATCH] Updated build script, so that 'Two More Cents' doesn't get adedd twice to the the title of the 'Site Map' page --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 57f5cfe..a582e94 100755 --- a/build.sh +++ b/build.sh @@ -236,7 +236,7 @@ gen_index_page() { # Generate an index page (site map) that includes links to th echo "$index_file_html" > "$path_for_output" # Output variable to file add_header_and_footer_to_index "$path_for_output" # Add header and footer to index file - sed -i 's/[\$][\$]title[\$][\$]/Site Map - Two More Cents/g' "$path_for_output" # Replace title variable with 'site map' title + sed -i 's/[\$][\$]title[\$][\$]/Site Map/g' "$path_for_output" # Replace title variable with 'site map' title }