From 8c24b9831cff2aa3ff37694222c693eaf6b331b7 Mon Sep 17 00:00:00 2001 From: Kyle Drake Date: Tue, 8 Oct 2019 21:15:08 -0700 Subject: [PATCH] sitemap gen index missing a char --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 8d4c4a9d..d1aef0d6 100644 --- a/Rakefile +++ b/Rakefile @@ -547,7 +547,7 @@ task :generate_sitemap => [:environment] do xml.sitemapindex(xmlns: 'http://www.sitemaps.org/schemas/sitemap/0.9') { sorted_sites.keys.sort.each { |key| xml.sitemap { - xml.loc "https://neocities.org/sitemap/index-#{key}.xm" + xml.loc "https://neocities.org/sitemap/index-#{key}.xml" xml.lastmod Time.now.strftime("%Y-%m-%d") } }