Skip to content

Instantly share code, notes, and snippets.

@mattupstate
Created July 6, 2010 00:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattupstate/464860 to your computer and use it in GitHub Desktop.
Save mattupstate/464860 to your computer and use it in GitHub Desktop.
<!-- Cleans up the project compile output. -->
<target name="clean-bin">
<delete dir="${bin.dir}" failonerror="false" includeemptydirs="true" />
<mkdir dir="${bin.dir}" />
</target>
<!-- Cleans up the test output. -->
<target name="clean-test">
<delete dir="${test.bin.dir}" failonerror="false" includeemptydirs="true" />
<mkdir dir="${test.bin.dir}" />
</target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment