mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
bug in script
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c2aff52dd7
commit
40761ebb0d
|
@ -58,7 +58,7 @@ def unpack(packages, symbols, arch):
|
|||
for f in os.listdir(packages):
|
||||
print(f)
|
||||
if f.endswith(".zip") and classify_package(f, arch):
|
||||
os_name, package_dir, ext, dst = classify_package(f)
|
||||
os_name, package_dir, ext, dst = classify_package(f, arch)
|
||||
path = os.path.abspath(os.path.join(packages, f))
|
||||
zip_ref = zipfile.ZipFile(path, 'r')
|
||||
zip_ref.extract(f"{package_dir}/bin/libz3.{ext}", f"{tmp}")
|
||||
|
|
Loading…
Reference in a new issue