3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00
This commit is contained in:
Nikolaj Bjorner 2022-01-08 16:28:12 -08:00
parent afbfea8ce6
commit 174889ad5e

View file

@ -86,7 +86,7 @@ def mk_icon(source_root):
def create_nuget_spec(version, repo, branch, commit, symbols, arch):
arch = f"{arch}." if arch == "x86" else ""
arch = f".{arch}" if arch == "x86" else ""
contents = """<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
@ -114,7 +114,7 @@ Linux Dependencies:
</package>""".format(version, repo, branch, commit, arch)
print(contents)
sym = "sym." if symbols else ""
file = f"out/Microsoft.Z3.{arch}{sym}nuspec"
file = f"out/Microsoft.Z3{arch}.{sym}nuspec"
print(file)
with open(file, 'w') as f:
f.write(contents)