This is an automated email from the ASF dual-hosted git repository. piotrz pushed a commit to branch release/0.9.6 in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit 46e83e7392d6859f35d344cc71105c68c233583d Author: Piotr Zarzycki <[email protected]> AuthorDate: Tue Aug 27 16:09:07 2019 +0200 Fixing clean up RoyaleUnitJS bin folder in ant build (cherry picked from commit 946e1f13c125ad2f3fc74ae56d8cbc462487c3f5) --- frameworks/js/projects/RoyaleUnitJS/src/test/royale/build.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frameworks/js/projects/RoyaleUnitJS/src/test/royale/build.xml b/frameworks/js/projects/RoyaleUnitJS/src/test/royale/build.xml index d14a610..de79934 100644 --- a/frameworks/js/projects/RoyaleUnitJS/src/test/royale/build.xml +++ b/frameworks/js/projects/RoyaleUnitJS/src/test/royale/build.xml @@ -105,6 +105,11 @@ <include name="**/**"/> </fileset> </delete> + <delete failonerror="false" includeemptydirs="true"> + <fileset dir="${basedir}/target/bin"> + <include name="**/**"/> + </fileset> + </delete> </target> <path id="lib.path">
