give myself a release-to-gcode target

This commit is contained in:
Jesse Vincent 2009-11-24 17:52:08 +00:00
parent 8ef734c1bd
commit 50c6dcc992
1 changed files with 17 additions and 0 deletions

View File

@ -282,6 +282,23 @@
</exec>
</target>
<target name="upload" depends="release">
<echo>Uploading to Google Code using Google::Code::Upload</echo>
<exec executable="googlecode_upload.pl" failonerror="true">
<arg value="--summary" />
<arg value="${ant.project.name} ${version-number}"/>
<arg value="--project" />
<arg value="k9mail"/>
<arg value="--user"/>
<arg value="${gcode-user}" />
<arg value="--pass"/>
<arg value="${gcode-pass}" />
<arg value="--labels"/>
<arg value="Type-Installer"/>
<arg value="${out-zipaligned-package}"/>
</exec>
</target>
<!-- Install the package on the default emulator -->
<target name="install" depends="debug">
<echo>Installing ${out-debug-package} onto default emulator...</echo>