Skip to content

Commit

Permalink
Fix naming of universal server extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
elprans committed Jan 13, 2025
1 parent 2ca25d4 commit 62c3c02
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion edgedbpkg/edgedb_ext/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ def resolve(
if edb is not None:
name = packages.canonicalize_name(f"{edb.name_slot}-{pkgname}")
else:
name = packages.canonicalize_name(pkgname)
name = packages.canonicalize_name(
f"{edgedb.EdgeDB.ident}-{pkgname}"
)

ext = super().resolve(
io,
Expand Down

0 comments on commit 62c3c02

Please sign in to comment.