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:
@ -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
|
||||
|
Reference in New Issue
Block a user