Skip to content

Commit

Permalink
Clean now properly deletes all build artifacts.
Browse files Browse the repository at this point in the history
  • Loading branch information
natebeck committed Jan 13, 2011
1 parent 461b399 commit f7041b9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build/build.xml
Expand Up @@ -154,8 +154,9 @@ http://bugs.adobe.com/jira/browse/SDK-20449

<target name="clean" description="Delete build artifacts." depends="cleanDocs,cleanLessons">
<delete file="${binDir}/PBEngine.swc"/>
<delete includeemptydirs="false" quiet="true">
<fileset dir="${rootDir}" includes="PushButtonEngine-*.zip"></fileset>
<delete includeemptydirs="false" quiet="false">
<fileset dir="${rootDir}" includes="PushButtonEngine-*.zip"/>
<fileset dir="${rootDir}/build/testrun/" />
</delete>
</target>

Expand Down

0 comments on commit f7041b9

Please sign in to comment.