Move to GitHub

This commit is contained in:
Reinhard Pointner 2016-04-21 19:57:01 +08:00
parent a5ce3aaea6
commit 43569f1990
1 changed files with 5 additions and 3 deletions

View File

@ -113,9 +113,8 @@
<!-- main jar -->
<jar destfile="${dir.dist}/filebot.jar">
<manifest>
<attribute name="Built-By" value="${user.name}" />
<attribute name="Built-Date" value="${tstamp.date}" />
<attribute name="Built-Revision" value="${revision}" />
<attribute name="Build-Date" value="${tstamp.date}" />
<attribute name="Build-Revision" value="${revision}" />
<attribute name="Application-Name" value="${title}" />
<attribute name="Application-Version" value="${version}" />
<attribute name="Main-Class" value="net.filebot.Main" />
@ -850,6 +849,9 @@
<target name="update">
<exec executable="git" failonerror="true">
<arg line="git reset --hard" />
</exec>
<exec executable="git" failonerror="true">
<arg line="pull" />
</exec>