From: Bjørn Erik Pedersen Date: Tue, 29 Jun 2021 07:51:09 +0000 (+0200) Subject: config: Fix Netlify default cache dir logic X-Git-Tag: v0.84.3~3 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6c8c0c8b6a0b39b91de44d72a7bd1cd49534a0f1;p=brevno-suite%2Fhugo config: Fix Netlify default cache dir logic Fixes #8710 --- diff --git a/helpers/path.go b/helpers/path.go index fd35fafc..6d4827bd 100644 --- a/helpers/path.go +++ b/helpers/path.go @@ -412,8 +412,8 @@ func getCacheDir(cfg config.Provider) string { return addTrailingFileSeparator(cacheDir) } - // Both of these are fairly distinctive OS env keys used by Netlify. - if os.Getenv("DEPLOY_PRIME_URL") != "" && os.Getenv("PULL_REQUEST") != "" { + // This is always set to true when running on Netlify. + if os.Getenv("NETLIFY") == "true" { // Netlify's cache behaviour is not documented, the currently best example // is this project: // https://github.com/philhawksworth/content-shards/blob/master/gulpfile.js