Skip to content

Commit c72d925

Browse files
authored
[Runner] Fix condition under which the ccache volume is mounted (#442)
1 parent fb50bc2 commit c72d925

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Runner.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1573,7 +1573,7 @@ function runner_setup!(workspaces, mappings, workspace_root, verbose, kwargs, pl
15731573
if !isdir(ccache_dir())
15741574
mkpath(ccache_dir())
15751575
end
1576-
if haskey(ENV, "CCACHE_DIR")
1576+
if haskey(envs, "CCACHE_DIR")
15771577
# When bootstrapping, `CCACHE_DIR` is not defined.
15781578
push!(workspaces, ccache_dir() => envs["CCACHE_DIR"])
15791579
end

0 commit comments

Comments
 (0)