mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
parent
a3d42a277d
commit
16da1ade70
1 changed files with 9 additions and 5 deletions
|
@ -27,6 +27,7 @@ import (
|
||||||
|
|
||||||
"github.com/gohugoio/hugo/common/herrors"
|
"github.com/gohugoio/hugo/common/herrors"
|
||||||
"github.com/gohugoio/hugo/common/text"
|
"github.com/gohugoio/hugo/common/text"
|
||||||
|
"github.com/gohugoio/hugo/htesting"
|
||||||
|
|
||||||
"github.com/gohugoio/hugo/hugofs"
|
"github.com/gohugoio/hugo/hugofs"
|
||||||
|
|
||||||
|
@ -411,11 +412,14 @@ func GetCacheDir(fs afero.Fs, cacheDir string) (string, error) {
|
||||||
|
|
||||||
const hugoCacheBase = "hugo_cache"
|
const hugoCacheBase = "hugo_cache"
|
||||||
|
|
||||||
userCacheDir, err := os.UserCacheDir()
|
// Avoid filling up the home dir with Hugo cache dirs from development.
|
||||||
if err == nil {
|
if !htesting.IsTest {
|
||||||
cacheDir := filepath.Join(userCacheDir, hugoCacheBase)
|
userCacheDir, err := os.UserCacheDir()
|
||||||
if err := fs.Mkdir(cacheDir, 0777); err == nil || os.IsExist(err) {
|
if err == nil {
|
||||||
return cacheDir, nil
|
cacheDir := filepath.Join(userCacheDir, hugoCacheBase)
|
||||||
|
if err := fs.Mkdir(cacheDir, 0777); err == nil || os.IsExist(err) {
|
||||||
|
return cacheDir, nil
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue