3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 09:04:07 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-03-02 18:44:04 -08:00
parent 62616cf37c
commit 14390eeac2

View file

@ -78,7 +78,7 @@ def unpack(packages, symbols, arch):
files = ["Microsoft.Z3.dll", "Microsoft.Z3.pdb", "Microsoft.Z3.xml"]
for b in files:
dir = os.path.join(tmp, package_dir, "bin")
file1 = os.path_join(dir, b)
file1 = os.path.join(dir, b)
file2 = os.path.join(dir, "netstandard2.0", b)
if os.path.exists(file1):
zip_ref.extract(file1, f"{tmp}")