Skip to content

Commit 4f79a5f

Browse files
committed
Move lib/ detection into init target.
This allows "ant clean bundle" to work properly.
1 parent 18e70cb commit 4f79a5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
<property name="lib.dir" value="lib"/>
2020

2121
<!-- Project classpath -->
22-
<available file="${lib.dir}" property="lib.present"/>
2322
<path id="build.classpath">
2423
<fileset dir="${lib.dir}">
2524
<include name="*.jar"/>
@@ -29,6 +28,7 @@
2928
<!-- Targets -->
3029

3130
<target name="init">
31+
<available file="${lib.dir}" property="lib.present"/>
3232
<mkdir dir="${build.classes.dir}"/>
3333
<mkdir dir="${dist.dir}"/>
3434
</target>

0 commit comments

Comments
 (0)