hugo/hugofs
satotake 281554ee97
hugofs: Fix glob case-sensitivity bug
On Linux, `hugofs.Glob` does not hit any directories which includes
uppercase letters. (This does not happen on macOS.)

Since `resources.GetMatch/Match` uses `Glob`,

```
{{ resources.GetMatch "Foo/bar.css" }}
```

this does not match `assets/Foo/bar.css` .

On the other hand, you can get it with

```
{{ resources.Get "Foo/bar.css" }}
```
2022-09-23 13:12:57 +02:00
..
files
glob hugofs: Fix glob case-sensitivity bug 2022-09-23 13:12:57 +02:00
createcounting_fs.go
decorators.go
fileinfo.go
fileinfo_test.go
filename_filter_fs.go
filename_filter_fs_test.go
filter_fs.go
filter_fs_test.go
fs.go
fs_test.go
glob.go hugofs: Fix glob case-sensitivity bug 2022-09-23 13:12:57 +02:00
glob_test.go hugofs: Fix glob case-sensitivity bug 2022-09-23 13:12:57 +02:00
hasbytes_fs.go
hashing_fs.go
hashing_fs_test.go
language_merge.go
noop_fs.go
nosymlink_fs.go
nosymlink_test.go
rootmapping_fs.go
rootmapping_fs_test.go
slice_fs.go
stacktracer_fs.go
walk.go
walk_test.go