We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2e8eb2 commit 09b356fCopy full SHA for 09b356f
test/loading.jl
@@ -1337,7 +1337,10 @@ end
1337
1338
@testset "relocatable upgrades #51989" begin
1339
mktempdir() do depot
1340
- project_path = joinpath(depot, "project")
+ # realpath is needed because Pkg is used for one of the precompile paths below, and Pkg calls realpath on the
1341
+ # project path so the cache file slug will be different if the tempdir is given as a symlink
1342
+ # (which it often is on MacOS) which would break the test.
1343
+ project_path = joinpath(realpath(depot), "project")
1344
mkpath(project_path)
1345
1346
# Create fake `Foo.jl` package with two files:
0 commit comments