Skip to content

Commit

Permalink
fix #90
Browse files Browse the repository at this point in the history
  • Loading branch information
baggepinnen committed Jan 18, 2023
1 parent 8c80d4b commit b475501
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/modules/DepGraph/registry.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ using Pkg.Registry: reachable_registries,
initialize_uncompressed!,
JULIA_UUID

const reg = first(reachable_registries())
regs = reachable_registries()
const reg = regs[findfirst(reg.name == "General" for reg in regs)]
@assert reg.name == "General"

name(uuid::UUID) =
Expand Down

0 comments on commit b475501

Please sign in to comment.