Skip to content

Commit

Permalink
Try to fix temp path collision on CI (JuliaLang#43596)
Browse files Browse the repository at this point in the history
See comments at the end of JuliaLang#38879
  • Loading branch information
Keno committed Dec 30, 2021
1 parent ded68b8 commit 28b47b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contrib/generate_precompile.jl
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,8 @@ function generate_precompile_statements()
module $pkgname
end
""")
tmp_prec = tempname()
tmp_proc = tempname()
tmp_prec = tempname(prec_path)
tmp_proc = tempname(prec_path)
s = """
pushfirst!(DEPOT_PATH, $(repr(prec_path)));
Base.PRECOMPILE_TRACE_COMPILE[] = $(repr(tmp_prec));
Expand Down

0 comments on commit 28b47b8

Please sign in to comment.