Skip to content

Commit

Permalink
always clean the bin directory before compiling Pattypan
Browse files Browse the repository at this point in the history
to make it easier to compile platform specific jars without needing to think about cacheed files.
  • Loading branch information
Abbe98 committed Feb 1, 2022
1 parent df08a66 commit a364ae6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@
</fileset>
</path>

<target name="compile">
<target name="clean">
<delete dir="bin"/>
</target>

<target name="compile" depends="clean">
<mkdir dir="bin"/>
<javac includeantruntime="false" srcdir="src" destdir="bin">
<classpath refid="classpath" />
Expand Down

0 comments on commit a364ae6

Please sign in to comment.