From b03dd1bb7ef44930cb8a9db089913207ec99d00d Mon Sep 17 00:00:00 2001 From: Hadrien Mary Date: Sat, 16 Nov 2024 13:25:59 -0500 Subject: [PATCH] Use RATTLER_CACHE_DIR instead of XDG_CACHE_HOME --- build-locally.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-locally.py b/build-locally.py index 726972e0a963e..a43b1d7297a3d 100644 --- a/build-locally.py +++ b/build-locally.py @@ -31,7 +31,7 @@ def setup_environment(ns): # The default cache location might not be writable using docker on macOS. if ns.config.startswith("linux") and platform.system() == "Darwin": - os.environ["CONDA_FORGE_DOCKER_RUN_ARGS"] = "-e XDG_CACHE_HOME=/tmp/rattler_cache" + os.environ["CONDA_FORGE_DOCKER_RUN_ARGS"] = "-e RATTLER_CACHE_DIR=/tmp/rattler_cache" def run_docker_build(ns):