Skip "dot" files in layout

As a vim user, .filename.swp files pop up.  This change prevents hugo
from reading those files.
This commit is contained in:
Noah Campbell 2013-08-23 13:51:59 -07:00
parent eb4288e3cd
commit ae7112977d

View file

@ -163,6 +163,9 @@ func (s *Site) loadTemplates() {
}
if !fi.IsDir() {
if ignoreDotFile(path) {
return nil
}
filetext, err := ioutil.ReadFile(path)
if err != nil {
return err