From 6c8c0c8b6a0b39b91de44d72a7bd1cd49534a0f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Tue, 29 Jun 2021 09:51:09 +0200 Subject: [PATCH] config: Fix Netlify default cache dir logic Fixes #8710 --- helpers/path.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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