1
0
mirror of https://github.com/gohugoio/hugo.git synced 2024-05-11 05:54:58 +00:00

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