From 7a7b374cd947c239ece3a261366d0e6d627a2e9c Mon Sep 17 00:00:00 2001 From: deroulers Date: Wed, 12 Nov 2025 06:39:51 +0100 Subject: [PATCH] RFC: Fix #60078 --- contrib/generate_precompile.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/generate_precompile.jl b/contrib/generate_precompile.jl index 8f79f22ef1761..d925933314481 100644 --- a/contrib/generate_precompile.jl +++ b/contrib/generate_precompile.jl @@ -346,8 +346,8 @@ generate_precompile_statements() = try # Make sure `ansi_enablecursor` is printe uuid = "$pkguuid" """) touch(joinpath(pkgpath, "Manifest.toml")) - tmp_prec = tempname(prec_path) - tmp_proc = tempname(prec_path) + tmp_prec = tempname(prec_path; cleanup=false) + tmp_proc = tempname(prec_path; cleanup=false) s = """ pushfirst!(DEPOT_PATH, $(repr(joinpath(prec_path,"depot")))); Base.PRECOMPILE_TRACE_COMPILE[] = $(repr(tmp_prec));