aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2014-09-27 11:43:15 +0200
committerChristian Weiske <cweiske@cweiske.de>2014-09-27 11:43:15 +0200
commit01aae57048be789c8102106833f734b382aafc2e (patch)
tree5b207c228a3d91ae7438d2b03e6d996331812808 /build.xml
parent47e67fe017477300559d868a0ce2ae46957bec14 (diff)
downloadgrauphel-0.2.0.tar.gz
grauphel-0.2.0.zip
use .tar.bz2 instead of .zip for releasesv0.2.0
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.xml b/build.xml
index 2cec679..0db8a62 100644
--- a/build.xml
+++ b/build.xml
@@ -11,7 +11,7 @@
</replaceregexp>
</filterchain>
</loadfile>
- <property name="zipfile" value="${phing.project.name}-${version}.zip" />
+ <property name="zipfile" value="${phing.project.name}-${version}.tar.bz2" />
<property name="distfile" value="dist/${zipfile}" />
<fileset id="fs.zip" dir=".">
@@ -33,9 +33,9 @@
</then>
</if>
<!--<delete file="${distfile}" failonerror="false"/>-->
- <zip destfile="${distfile}" prefix="grauphel/">
+ <tar destfile="${distfile}" prefix="grauphel/" compression="bzip2">
<fileset refid="fs.zip"/>
- </zip>
+ </tar>
</target>
</project>