1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-23 08:18:52 -05:00

Simplify chocolatey build

This commit is contained in:
Reinhard Pointner 2016-11-06 16:20:48 +08:00
parent bcabaa61e2
commit 83156be8af

View File

@ -877,11 +877,10 @@
<!-- chocolatey pack and push -->
<exec executable="chocolatey" dir="${dir.dist}/chocolatey" failonerror="true">
<arg value="pack" />
<arg line="pack" />
</exec>
<exec executable="chocolatey" dir="${dir.dist}/chocolatey" failonerror="true">
<arg value="push" />
<arg value="${dir.dist}/chocolatey/${package.name}.${version}.nupkg" />
<arg line="push ${package.name}.${version}.nupkg" />
</exec>
</target>