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>
|
||||
<chmod file="${antclick.dir}/hop.sh" perm="755"/>
|
||||
<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">
|
||||
<include name="${antclick.dir}/hop.sh"/>
|
||||
<include name="hop.sh"/>
|
||||
</tarfileset>
|
||||
<tarfileset dir="${antclick.dir}">
|
||||
<include name="${antclick.dir}/**"/>
|
||||
<exclude name="${antclick.dir}/hop.sh"/>
|
||||
<include name="**"/>
|
||||
<exclude name="hop.sh"/>
|
||||
</tarfileset>
|
||||
</tar>
|
||||
<gzip zipfile="${home.dir}/antclick.tgz" src="${build.work}/antclick.tar"/>
|
||||
|
|
Loading…
Add table
Reference in a new issue