1
0
Fork 0
forked from fz0x1/go-org-py

Merge pull request 'fix' (#2) from fz0x1/go-org-py:master into master

Reviewed-on: #2
This commit is contained in:
fz0x1 2025-06-23 17:46:58 +02:00
commit 83313baea0
2 changed files with 2 additions and 1 deletions

View file

@ -1,4 +1,5 @@
include convert.go
include go.mod
include go.sum
include *.so

View file

@ -30,7 +30,7 @@ class GopyHook(build_py):
shutil.copy2(BUILD_DIR / "convert.py", PKG_DIR)
shutil.copy2(BUILD_DIR / "go.py", PKG_DIR)
for lib in BUILD_DIR.glob("*/go_*.so"):
for lib in BUILD_DIR.glob("*.so"):
shutil.copy2(lib, PKG_DIR / lib.name)