hugo/resources/resource_factories/create
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
..
create.go hugofs: Fix glob case-sensitivity bug 2022-09-23 13:12:57 +02:00
remote.go Improve error messages, esp. when the server is running 2022-05-06 19:43:22 +02:00
remote_test.go resources: Add key to reources.GetRemote options map 2022-04-13 09:18:17 +02:00