diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2015-09-22 17:44:23 +0200 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2015-09-22 17:48:30 +0200 |
| commit | b4d015eda88f8b01d968cab9be74a6cee3b52066 (patch) | |
| tree | 314659f3edc72a4831e9206505846bf1740efc11 /build.xml | |
| parent | 3d1e6fe92c4923d2693bfa582a36de16547a098e (diff) | |
| download | grauphel-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.
Diffstat (limited to 'build.xml')
| -rw-r--r-- | build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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> |
