mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-09 10:05:24 +02:00
Try to fix rseserver tar access permissions again
This commit is contained in:
parent
1c05af4e1f
commit
f85cee1352
1 changed files with 4 additions and 7 deletions
|
@ -428,7 +428,10 @@
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="rseserver-os-tar" depends="rseserver-os-collect">
|
<target name="rseserver-os-tar" depends="rseserver-os-collect">
|
||||||
<tar destfile="${buildDirectory}/${buildLabel}/rseserver-${buildId}-${os}.tar" basedir="${working}/collector" includes="*"/>
|
<tar destfile="${buildDirectory}/${buildLabel}/rseserver-${buildId}-${os}.tar">
|
||||||
|
<tarfileset dir="${working}/collector" mode="755" includes="*.pl,*.sh" />
|
||||||
|
<tarfileset dir="${working}/collector" mode="644" excludes="*.pl,*.sh" />
|
||||||
|
</tar>
|
||||||
<delete dir="${working}/collector" />
|
<delete dir="${working}/collector" />
|
||||||
</target>
|
</target>
|
||||||
<target name="rseserver-os-zip" depends="rseserver-os-collect">
|
<target name="rseserver-os-zip" depends="rseserver-os-collect">
|
||||||
|
@ -441,9 +444,6 @@
|
||||||
<copy todir="${working}/collector">
|
<copy todir="${working}/collector">
|
||||||
<fileset dir="${working}/scripts/${os}" includes="*"/>
|
<fileset dir="${working}/scripts/${os}" includes="*"/>
|
||||||
</copy>
|
</copy>
|
||||||
<chmod perm="755">
|
|
||||||
<fileset dir="${working}/collector" includes="*"/>
|
|
||||||
</chmod>
|
|
||||||
<copy todir="${working}/collector">
|
<copy todir="${working}/collector">
|
||||||
<fileset dir="${working}/data" includes="*"/>
|
<fileset dir="${working}/data" includes="*"/>
|
||||||
</copy>
|
</copy>
|
||||||
|
@ -455,9 +455,6 @@
|
||||||
<copy todir="${working}/collector">
|
<copy todir="${working}/collector">
|
||||||
<fileset dir="${working}/jars" includes="*"/>
|
<fileset dir="${working}/jars" includes="*"/>
|
||||||
</copy>
|
</copy>
|
||||||
<chmod perm="755">
|
|
||||||
<fileset dir="${working}/collector" includes="*.pl,*.sh"/>
|
|
||||||
</chmod>
|
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- =====================================================================
|
<!-- =====================================================================
|
||||||
|
|
Loading…
Add table
Reference in a new issue