mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05: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:
parent
eb4288e3cd
commit
ae7112977d
1 changed files with 3 additions and 0 deletions
|
@ -163,6 +163,9 @@ func (s *Site) loadTemplates() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if !fi.IsDir() {
|
if !fi.IsDir() {
|
||||||
|
if ignoreDotFile(path) {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
filetext, err := ioutil.ReadFile(path)
|
filetext, err := ioutil.ReadFile(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|
Loading…
Reference in a new issue