1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 17:26:01 +02:00

fix build script to set group write permission on the latest build

This commit is contained in:
Vivian Kong 2011-03-16 14:37:04 +00:00
parent 0cf94c5dd7
commit 0605ef71f9

View file

@ -324,7 +324,9 @@
<chmod perm="g+w" dir="${copyToDir}">
<dirset dir="${copyToDir}"/>
</chmod>
<chmod perm="g+w" dir="${copyToDir}/${buildType}.${buildId}">
<dirset dir="${copyToDir}/${buildType}.${buildId}"/>
</chmod>
<!-- Create symlink to latest build -->
<symlink action="delete" link="${copyToDir}/latest" failonerror="false"/>
<symlink link="${copyToDir}/latest" resource="${copyToDir}/${buildType}.${buildId}" overwrite="true"/>