hugo/config/allconfig
Bjørn Erik Pedersen b3f10556f0
Use os.UserCacheDir as first fallback if cacheDir is not set
We will now try

1. cacheDir (or, commonly set in environment as `HUGO_CACHEDIR`)
2. if on Netlify we use `/opt/build/cache/hugo_cache/`
3. os.UserCacheDir
4. A temp dir

Storing the cache, especially the module cache, in a temporary idea has had lots of hard to debug issues, especially on MacOS,
which this commit tries to fix.

This should also make it easier to locate the Hugo cache:

>UserCacheDir returns the default root directory to use for user-specific cached data. Users should create their own
application-specific subdirectory within this one and use that.
>
>On Unix systems, it returns $XDG_CACHE_HOME as specified by
https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html if non-empty, else $HOME/.cache. On Darwin, it
returns $HOME/Library/Caches. On Windows, it returns %LocalAppData%. On Plan 9, it returns $home/lib/cache.
>
>If the location cannot be determined (for example, $HOME is not defined), then it will return an error.

Fixes #11286
Fixes #11291
2023-07-27 20:59:47 +02:00
..
allconfig.go Use os.UserCacheDir as first fallback if cacheDir is not set 2023-07-27 20:59:47 +02:00
alldecoders.go Fix setting config from env with complex (e.g. YAML) strings 2023-07-16 18:08:23 +02:00
configlanguage.go Fix defaultContentLanguageInSubdir with only 1 language 2023-07-08 16:08:46 +02:00
integration_test.go Only print the path warnings once 2023-06-30 10:24:28 +02:00
load.go Fix multiple languages in HUGO_DISABLELANGUAGES 2023-07-27 15:51:25 +02:00
load_test.go Create a struct with all of Hugo's config options 2023-05-16 18:01:29 +02:00