clean ant task shouldn't delete the new test folder

This commit is contained in:
Brandon Aaron 2007-09-13 16:44:44 +00:00
parent 8ece9e8fb1
commit 08a6acc362

View file

@ -175,11 +175,11 @@
<target name="clean">
<delete dir="${DOCS_DIR}" />
<delete dir="${TEST_DIR}" />
<!-- <delete dir="${TEST_DIR}" /> -->
<delete dir="${DIST_DIR}" />
</target>
<target name="all" depends="clean,jquery,lite,min,pack,docs,test">
<target name="all" depends="clean,jquery,lite,min,pack,docs">
<echo message="Build complete." />
</target>