append full version to git bundle generation when generating from the ant target

This commit is contained in:
idk
2020-12-11 13:51:40 -05:00
parent 0ad7e52b71
commit 804e2f39f9

View File

@ -3147,16 +3147,16 @@
<checksum file="portable-win32.zip" forceOverwrite="yes"/>
<move file="portable" tofile="pkg-temp"/>
</target>
<target name = "bundle" depends="pkg">
<target name="bundle" depends="pkg">
<exec executable="git" failonerror="true">
<arg value="bundle" />
<arg value="create" />
<arg value="i2p.i2p.bundle" />
<arg value="i2p.i2p.${full.version}.bundle" />
<arg value="--all" />
<arg value="--branches" />
<arg value="--tags" />
</exec>
<mktorrent file="i2p.i2p.bundle" />
<mktorrent file="i2p.i2p.${full.version}.bundle" />
</target>
</project>