summaryrefslogtreecommitdiff
path: root/build.ant
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2015-04-10 19:02:43 +0200
committerAlon Levy <alon@pobox.com>2015-04-10 19:02:43 +0200
commitaf78fe2a58f112c2a89d5731461dff8b59b19647 (patch)
tree65881de20b66a4218134397b90933a76724d9fb9 /build.ant
parent2fda66f1ffc7d25359c4399d8cacb50c3a4f0fc8 (diff)
server-tools: change destination to separate tools directory
Diffstat (limited to 'build.ant')
-rw-r--r--build.ant12
1 files changed, 6 insertions, 6 deletions
diff --git a/build.ant b/build.ant
index 58a362b2..095b1cc9 100644
--- a/build.ant
+++ b/build.ant
@@ -135,13 +135,13 @@
includes="*" />
</copy>
- </parallel>
+ <!-- tools. use cp to preserve permissions (copy doesn't).
+ out of parallel so ${targetDeploymentDir}/bin is already created -->
+ <exec executable="cp" failonerror="true">
+ <arg line="-R src/local/server-tools ${targetDeploymentDir}/tools"/>
+ </exec>
- <!-- tools. use cp to preserve permissions (copy doesn't).
- out of parallel so ${targetDeploymentDir}/bin is already created -->
- <exec executable="cp" failonerror="true">
- <arg line="-R src/local/server-tools ${targetDeploymentDir}/bin/tools"/>
- </exec>
+ </parallel>
</target>