Merge pull request #273 from NateEag/fix-package-tarbomb

Make package tarballs be in their own directory
This commit is contained in:
Klaus Silveira
2013-03-01 10:16:11 -08:00

View File

@@ -75,9 +75,12 @@
</target>
<target name="package" description="Package the application for distribution">
<copy todir="${basedir}/build/gitlist/">
<fileset dir="${basedir}" excludes="build/**, tests/**, phpunit.xml.dist, cache.properties, .gitignore, .travis.yml, build.xml, composer.json, composer.lock, config.ini" />
</copy>
<tar destfile="${basedir}/build/gitlist.tar.gz"
basedir="${basedir}/"
excludes="build/**, tests/**, phpunit.xml.dist, cache.properties, .gitignore, .travis.yml, build.xml, composer.json, composer.lock, config.ini"
basedir="${basedir}/build/"
compression="gzip"
longfile="gnu"
/>