Skip to content

Commit d16289f

Browse files
committed
CI(full),CI(release): Last minor changes
1 parent 87df11e commit d16289f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

bindings/python/unicorn/unicorn_py3/unicorn.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -332,11 +332,12 @@ def debug() -> str:
332332
('tricore', uc.UC_ARCH_TRICORE)
333333
)
334334

335-
all_archs = ''.join(f'-{name}' for name, atype in archs if uc_arch_supported(atype))
335+
all_archs = '-'.join(f'{name}' for name, atype in archs if uc_arch_supported(atype))
336336
lib_maj, lib_min, _ = uc_version()
337337
bnd_maj, bnd_min, _ = version_bind()
338+
lib_path = str(uclib)
338339

339-
return f'python-{all_archs}-c{lib_maj}.{lib_min}-b{bnd_maj}.{bnd_min}'
340+
return f'python-{all_archs}-c{lib_maj}.{lib_min}-b{bnd_maj}.{bnd_min}-{lib_path}'
340341

341342

342343
if TYPE_CHECKING:

0 commit comments

Comments
 (0)