Skip to content

Commit c746608

Browse files
committed
fixed ant only compile error
1 parent 58cd058 commit c746608

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<target name="compile">
44
<mkdir dir="build/classes"/>
5-
<mkdir dir="build/example"/>
5+
<mkdir dir="build/classes/"/>
66
<javac includeantruntime="false" debug="on" srcdir="src" destdir="build/classes" />
7-
<javac includeantruntime="false" srcdir="example" classpath="src" destdir="build/example" />
7+
<javac includeantruntime="false" srcdir="example" classpath="src" destdir="build/classes/" />
88
</target>
99

1010
<target name="jar" depends="compile">

0 commit comments

Comments
 (0)