aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2015-09-22 17:44:23 +0200
committerChristian Weiske <cweiske@cweiske.de>2015-09-22 17:48:30 +0200
commitb4d015eda88f8b01d968cab9be74a6cee3b52066 (patch)
tree314659f3edc72a4831e9206505846bf1740efc11
parent3d1e6fe92c4923d2693bfa582a36de16547a098e (diff)
downloadgrauphel-b4d015eda88f8b01d968cab9be74a6cee3b52066.tar.gz
grauphel-b4d015eda88f8b01d968cab9be74a6cee3b52066.zip
Distribute .gz files instead of .bz2
ownCloud 8.x does not support .bz2 archives, only .gz and .zip My fix for it https://github.com/owncloud/core/pull/19182 is currently in the ownCloud 9 milestone, which is expected for next february. This is too long.
-rw-r--r--build.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 32e6a81..b271557 100644
--- a/build.xml
+++ b/build.xml
@@ -11,7 +11,7 @@
</replaceregexp>
</filterchain>
</loadfile>
- <property name="zipfile" value="${phing.project.name}-${version}.tar.bz2" />
+ <property name="zipfile" value="${phing.project.name}-${version}.tar.gz" />
<property name="distfile" value="dist/${zipfile}" />
<fileset id="fs.zip" dir=".">
@@ -34,7 +34,7 @@
</then>
</if>
<!--<delete file="${distfile}" failonerror="false"/>-->
- <tar destfile="${distfile}" prefix="grauphel/" compression="bzip2">
+ <tar destfile="${distfile}" prefix="grauphel/" compression="gzip">
<fileset refid="fs.zip"/>
</tar>
</target>