Skip to content

Commit 0acbdff

Browse files
update mk_nuget_task
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent bfc3044 commit 0acbdff

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

scripts/mk_nuget_task.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,17 +86,12 @@ def create_nuget_spec(release_version, release_commit):
8686
<iconUrl>https://raw.githubusercontent.com/Z3Prover/z3/{1}/package/icon.jpg</iconUrl>
8787
<projectUrl>https://github.com/Z3Prover/z3</projectUrl>
8888
<licenseUrl>https://raw.githubusercontent.com/Z3Prover/z3/{1}/LICENSE.txt</licenseUrl>
89-
<repository
90-
type="git"
91-
url="https://github.com/Z3Prover/z3.git"
92-
branch="master"
93-
commit="{1}"
94-
/>
89+
<repository type="git" url="https://github.com/Z3Prover/z3.git" branch="master" commit="{1}" />
9590
<requireLicenseAcceptance>true</requireLicenseAcceptance>
9691
<language>en</language>
9792
</metadata>
9893
</package>""".format(release_version, release_commit)
99-
94+
print(contents)
10095
with open("out/Microsoft.Z3.x64.nuspec", 'w') as f:
10196
f.write(contents)
10297

0 commit comments

Comments
 (0)