hugo/hugofs/glob
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
..
filename_filter.go hugofs: Add includeFiles and excludeFiles to mount configuration 2021-10-20 05:00:17 +02:00
filename_filter_test.go hugofs: Add includeFiles and excludeFiles to mount configuration 2021-10-20 05:00:17 +02:00
glob.go hugofs: Fix glob case-sensitivity bug 2022-09-23 13:12:57 +02:00
glob_test.go hugofs: Add includeFiles and excludeFiles to mount configuration 2021-10-20 05:00:17 +02:00