Repository: ant Updated Branches: refs/heads/master 1a2c33fd0 -> ca91b859f
Fix allclean target in build Project: http://git-wip-us.apache.org/repos/asf/ant/repo Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/ca91b859 Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/ca91b859 Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/ca91b859 Branch: refs/heads/master Commit: ca91b859f190598729613db4536a24f708eeb20b Parents: 1a2c33f Author: Jaikiran Pai <[email protected]> Authored: Thu Dec 21 10:20:59 2017 +0530 Committer: Jaikiran Pai <[email protected]> Committed: Thu Dec 21 10:20:59 2017 +0530 ---------------------------------------------------------------------- build.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ant/blob/ca91b859/build.xml ---------------------------------------------------------------------- diff --git a/build.xml b/build.xml index c4e3526..5e39cd7 100644 --- a/build.xml +++ b/build.xml @@ -1408,8 +1408,10 @@ description="--> cleans up everything"> <delete file="${bootstrap.dir}/bin/antRun"/> <delete file="${bootstrap.dir}/bin/antRun.bat"/> - <delete file="${bootstrap.dir}/bin/*.pl"/> - <delete file="${bootstrap.dir}/bin/*.py"/> + <delete> + <fileset dir="${bootstrap.dir}/bin" includes="*.pl"/> + <fileset dir="${bootstrap.dir}/bin" includes="*.py"/> + </delete> </target> <!--
