Skip to content

Commit

Permalink
fix paths to stdlibs being put into test manifest again
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC committed Dec 2, 2020
1 parent cce236e commit 2d7bb80
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/Operations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1382,8 +1382,11 @@ end

function abspath!(env::EnvCache, manifest::Dict{UUID,PackageEntry})
for (uuid, entry) in manifest
entry.path !== nothing || continue
entry.path = project_rel_path(env, entry.path)
if is_stdlib(uuid)
entry.path = Types.stdlib_path(entry.name)
elseif entry.path !== nothing
entry.path = project_rel_path(env, entry.path)
end
end
return manifest
end
Expand Down

0 comments on commit 2d7bb80

Please sign in to comment.