modified antclick task to achieve correct file permissions when taring that thang
This commit is contained in:
parent
23c965c85d
commit
d240acab24
1 changed files with 6 additions and 6 deletions
|
@ -309,13 +309,13 @@
|
||||||
</copy>
|
</copy>
|
||||||
<chmod file="${antclick.dir}/hop.sh" perm="755"/>
|
<chmod file="${antclick.dir}/hop.sh" perm="755"/>
|
||||||
<zip zipfile="${home.dir}/antclick.zip" basedir="${build.work}/" includes="antclick/**"/>
|
<zip zipfile="${home.dir}/antclick.zip" basedir="${build.work}/" includes="antclick/**"/>
|
||||||
<tar tarfile="${build.work}/antclick.tar" basedir="${build.work}/" includes="antclick/**">
|
<tar tarfile="${build.work}/antclick.tar">
|
||||||
<tarfileset dir="${antclick.dir}" mode="755">
|
<tarfileset dir="${antclick.dir}" mode="755">
|
||||||
<include name="${antclick.dir}/hop.sh"/>
|
<include name="hop.sh"/>
|
||||||
</tarfileset>
|
</tarfileset>
|
||||||
<tarfileset dir="${antclick.dir}">
|
<tarfileset dir="${antclick.dir}">
|
||||||
<include name="${antclick.dir}/**"/>
|
<include name="**"/>
|
||||||
<exclude name="${antclick.dir}/hop.sh"/>
|
<exclude name="hop.sh"/>
|
||||||
</tarfileset>
|
</tarfileset>
|
||||||
</tar>
|
</tar>
|
||||||
<gzip zipfile="${home.dir}/antclick.tgz" src="${build.work}/antclick.tar"/>
|
<gzip zipfile="${home.dir}/antclick.tgz" src="${build.work}/antclick.tar"/>
|
||||||
|
@ -350,13 +350,13 @@
|
||||||
</ftp>
|
</ftp>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="test1" depends="init">
|
<target name="test1" depends="init">
|
||||||
<mkdir dir="${build.checkout}"/>
|
<mkdir dir="${build.checkout}"/>
|
||||||
<cvs cvsRoot="${cvs.root}" package="apps/manage" dest="${build.checkout}"/>
|
<cvs cvsRoot="${cvs.root}" package="apps/manage" dest="${build.checkout}"/>
|
||||||
<zip zipfile="../manage.zip" basedir="${build.checkout}/apps/manage/" includes="**"/>
|
<zip zipfile="../manage.zip" basedir="${build.checkout}/apps/manage/" includes="**"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="test2" depends="init">
|
<target name="test2" depends="init">
|
||||||
<property name="antclick.dir" value="${build.work}/antclick"/>
|
<property name="antclick.dir" value="${build.work}/antclick"/>
|
||||||
<copy todir="${antclick.dir}/apps/antville/">
|
<copy todir="${antclick.dir}/apps/antville/">
|
||||||
<fileset dir="${build.checkout}/hopbuild/skeleton/extras" includes="db.properties"/>
|
<fileset dir="${build.checkout}/hopbuild/skeleton/extras" includes="db.properties"/>
|
||||||
|
|
Loading…
Add table
Reference in a new issue