aboutsummaryrefslogtreecommitdiffstats
path: root/monitor/build.xml
diff options
context:
space:
mode:
authorSiva Velusamy <vsiva@google.com>2012-05-07 17:02:34 -0700
committerSiva Velusamy <vsiva@google.com>2012-05-07 17:05:09 -0700
commitc1c5b548de8727f6aac83dcfee963f48c20cfa35 (patch)
tree6febebc580c2c978d428686cbee3464729b67552 /monitor/build.xml
parentcb7681839f7103df1e57767df201c0e1082330f2 (diff)
downloadsdk-c1c5b548de8727f6aac83dcfee963f48c20cfa35.zip
sdk-c1c5b548de8727f6aac83dcfee963f48c20cfa35.tar.gz
sdk-c1c5b548de8727f6aac83dcfee963f48c20cfa35.tar.bz2
rcp build: don't copy plugin/bin folder
Change-Id: Ic4923d425e5d59f83cfcb88a9e146bae704b2eda
Diffstat (limited to 'monitor/build.xml')
-rw-r--r--monitor/build.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/monitor/build.xml b/monitor/build.xml
index fabd3ba..d3c2d94 100644
--- a/monitor/build.xml
+++ b/monitor/build.xml
@@ -53,10 +53,11 @@
<!-- create the build directory, copy plugins and features into it -->
<target name="copy_srcs">
<mkdir dir="${buildDir}" />
- <copy todir="${buildDir}">
+ <copy todir="${buildDir}" preservelastmodified="true">
<fileset dir="${srcDir}/">
<include name="plugins/**" />
<include name="features/**" />
+ <exclude name="plugins/*/bin/**" />
</fileset>
</copy>
</target>