Skip to content

Commit 28b47b8

Browse files
authored
Try to fix temp path collision on CI (#43596)
See comments at the end of #38879
1 parent ded68b8 commit 28b47b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contrib/generate_precompile.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,8 @@ function generate_precompile_statements()
254254
module $pkgname
255255
end
256256
""")
257-
tmp_prec = tempname()
258-
tmp_proc = tempname()
257+
tmp_prec = tempname(prec_path)
258+
tmp_proc = tempname(prec_path)
259259
s = """
260260
pushfirst!(DEPOT_PATH, $(repr(prec_path)));
261261
Base.PRECOMPILE_TRACE_COMPILE[] = $(repr(tmp_prec));

0 commit comments

Comments
 (0)