From 2dadeb4620792aa74f4bff19e87ad6078f68a2e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Thu, 4 Sep 2025 20:20:38 +0100 Subject: [PATCH] [Runner] Fix condition under which the ccache volume is mounted --- src/Runner.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Runner.jl b/src/Runner.jl index 7d9a865b..3bc0505c 100644 --- a/src/Runner.jl +++ b/src/Runner.jl @@ -1573,7 +1573,7 @@ function runner_setup!(workspaces, mappings, workspace_root, verbose, kwargs, pl if !isdir(ccache_dir()) mkpath(ccache_dir()) end - if haskey(ENV, "CCACHE_DIR") + if haskey(envs, "CCACHE_DIR") # When bootstrapping, `CCACHE_DIR` is not defined. push!(workspaces, ccache_dir() => envs["CCACHE_DIR"]) end