From 7e64934c0a8da2c8620f24a52be3ea81fbecaa12 Mon Sep 17 00:00:00 2001 From: daniel crowder Date: Mon, 25 Mar 2024 10:53:59 -0400 Subject: [PATCH 1/2] HOTFIX: Add missing robots.txt file to static site script. --- scripts/upkeep | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/upkeep b/scripts/upkeep index 1471bc352..b94c94130 100755 --- a/scripts/upkeep +++ b/scripts/upkeep @@ -38,6 +38,10 @@ mkdir -p ${html_path}/core/assets cp -rfp ${app_path}/web/core/assets/vendor ${html_path}/core/assets/ echo "Missing Core assets files completed!" +echo "Adding missing robots.txt file" +cp -f ${app_path}/web/robots.txt ${html_path}/ +echo "Missing robots.txt file....completed!" + echo "Adding missing module files for Sitemap" mkdir -p ${html_path}/modules/contrib/simple_sitemap/xsl cp -rfp ${app_path}/web/modules/contrib/simple_sitemap/xsl/* ${html_path}/modules/contrib/simple_sitemap/xsl/ From 45231bc270d097e23843df65753d9b86dca67e52 Mon Sep 17 00:00:00 2001 From: daniel crowder Date: Mon, 25 Mar 2024 10:55:06 -0400 Subject: [PATCH 2/2] HOTFIX: Edit completion status text. --- scripts/upkeep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/upkeep b/scripts/upkeep index b94c94130..6d50b2a6c 100755 --- a/scripts/upkeep +++ b/scripts/upkeep @@ -40,7 +40,7 @@ echo "Missing Core assets files completed!" echo "Adding missing robots.txt file" cp -f ${app_path}/web/robots.txt ${html_path}/ -echo "Missing robots.txt file....completed!" +echo "Adding missing robots.txt file....completed!" echo "Adding missing module files for Sitemap" mkdir -p ${html_path}/modules/contrib/simple_sitemap/xsl