From: spf13 Date: Mon, 7 Oct 2013 13:23:42 +0000 (-0400) Subject: Fixing bug where RSS for site was rendered in wrong location X-Git-Tag: v0.9~70 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7468292c;p=brevno-suite%2Fhugo Fixing bug where RSS for site was rendered in wrong location --- diff --git a/hugolib/site.go b/hugolib/site.go index ca54f063..2e28b3f0 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -524,8 +524,10 @@ func (s *Site) RenderHomePage() error { n.Permalink = permalink(s, "index.xml") y := s.NewXMLBuffer() s.Tmpl.ExecuteTemplate(y, "rss.xml", n) - err = s.WritePublic("index.xml", y) - return err + err = s.WritePublic(".xml", y) + if err != nil { + return err + } } if a := s.Tmpl.Lookup("404.html"); a != nil {