Skip to content

Commit

Permalink
Fix load-ext when .zip filename doesn't match internal folder name (#…
Browse files Browse the repository at this point in the history
…7951)

There was a mismatch that was causing trouble.
  • Loading branch information
msullivan authored Oct 31, 2024
1 parent 2daed8a commit 3ae01b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edb/load_ext/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def install_edgedb_extension(

print("Installing", target)

ttarget = pathlib.Path(tdir) / pkg.stem
ttarget = pathlib.Path(tdir) / dirname
os.mkdir(ttarget)

with z.open(str(dirname / 'MANIFEST.toml')) as m:
Expand Down

0 comments on commit 3ae01b5

Please sign in to comment.