Skip to content

Commit

Permalink
follow up #49812, fix the wrong type declaration (#49854)
Browse files Browse the repository at this point in the history
#49812 introduced a bug and broke the CI.
This commit fixes it up.
  • Loading branch information
aviatesk authored May 17, 2023
1 parent becaa78 commit 869c70e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/loading.jl
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ function manifest_deps_get(env::String, where::PkgId, name::String)::Union{Nothi
exts = get(d, "extensions", nothing)::Union{Dict{String, Any}, Nothing}
if exts !== nothing
# Check if `where` is an extension of the project
if where.name in keys(exts) && where.uuid == uuid5(proj.uuid::String, where.name)
if where.name in keys(exts) && where.uuid == uuid5(proj.uuid::UUID, where.name)
# Extensions can load weak deps...
weakdeps = get(d, "weakdeps", nothing)::Union{Dict{String, Any}, Nothing}
if weakdeps !== nothing
Expand Down

0 comments on commit 869c70e

Please sign in to comment.