diff options
author | Bjørn Erik Pedersen <[email protected]> | 2024-02-09 13:52:36 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2024-02-16 13:17:53 +0100 |
commit | 639073e4fee8fd4235c1002b076e110fad4c82f2 (patch) | |
tree | 55f4c392bc4f156f8605993d3d416bd5b105cc40 /hugofs | |
parent | 21d9057dbfe64f668d5fc6a7f458e0984fbf7e56 (diff) | |
download | hugo-639073e4fee8fd4235c1002b076e110fad4c82f2.tar.gz hugo-639073e4fee8fd4235c1002b076e110fad4c82f2.zip |
Fix rebuild with resources.Concat
Fixes #12017
Diffstat (limited to 'hugofs')
-rw-r--r-- | hugofs/component_fs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hugofs/component_fs.go b/hugofs/component_fs.go index c3c64b18f..b6eeb89e5 100644 --- a/hugofs/component_fs.go +++ b/hugofs/component_fs.go @@ -241,7 +241,7 @@ type ComponentFsOptions struct { DefaultContentLanguage string // The parser used to parse paths provided by this filesystem. - PathParser paths.PathParser + PathParser *paths.PathParser } func (fs *componentFs) Open(name string) (afero.File, error) { |