diff options
author | Siva Velusamy <vsiva@google.com> | 2012-05-07 17:07:53 -0700 |
---|---|---|
committer | android code review <noreply-gerritcodereview@google.com> | 2012-05-07 17:07:53 -0700 |
commit | 360fc14fb54a542c3608e4efb47e17e6c8ea7401 (patch) | |
tree | b455a5d5d284321e0b4983150622369b1374d0b0 /monitor | |
parent | 744109a2331c46902d5c978067fbebb1855763ee (diff) | |
parent | c1c5b548de8727f6aac83dcfee963f48c20cfa35 (diff) | |
download | sdk-360fc14fb54a542c3608e4efb47e17e6c8ea7401.zip sdk-360fc14fb54a542c3608e4efb47e17e6c8ea7401.tar.gz sdk-360fc14fb54a542c3608e4efb47e17e6c8ea7401.tar.bz2 |
Merge "rcp build: don't copy plugin/bin folder"
Diffstat (limited to 'monitor')
-rw-r--r-- | monitor/build.xml | 3 |
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> |