Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/hugofs
diff options
context:
space:
mode:
Diffstat (limited to 'hugofs')
-rw-r--r--hugofs/filter_fs.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/hugofs/filter_fs.go b/hugofs/filter_fs.go
index ca9c33361..15373c2e5 100644
--- a/hugofs/filter_fs.go
+++ b/hugofs/filter_fs.go
@@ -153,7 +153,8 @@ func (fs *FilterFs) LstatIfPossible(name string) (os.FileInfo, bool, error) {
return decorateFileInfo(fi, fs, fs.getOpener(name), "", "", nil), false, nil
}
- fs.applyFilters(name, -1, fi)
+ parent := filepath.Dir(name)
+ fs.applyFilters(parent, -1, fi)
return fi, b, nil