Author: jfrederic.clere(a)jboss.com
Date: 2008-11-27 10:06:29 -0500 (Thu, 27 Nov 2008)
New Revision: 2075
Modified:
trunk/mod_cluster/test/java/build.xml
Log:
Fix dependencies... (Arf)
Modified: trunk/mod_cluster/test/java/build.xml
===================================================================
--- trunk/mod_cluster/test/java/build.xml 2008-11-27 13:29:49 UTC (rev 2074)
+++ trunk/mod_cluster/test/java/build.xml 2008-11-27 15:06:29 UTC (rev 2075)
@@ -162,14 +162,9 @@
<target name="testexist">
<echo message="Testing for ${destfile}"/>
- <available file="${base.path}/${destfile}"
property="exist"/>
+ <available file="${destfile}" property="exist"/>
</target>
- <target name="testexistdir">
- <echo message="Testing for ${destfile} in ${destdir}"/>
- <available file="${base.path}/${destdir}/${destfile}"
property="exist"/>
- </target>
-
<target name="downloadgz" unless="exist"
depends="setproxy,testexist">
<!-- Download and extract the package -->
<get src="${sourcefile}" dest="${base.path}/file.tar.gz"
/>
@@ -179,7 +174,7 @@
<delete file="${base.path}/file.tar.gz"/>
</target>
- <target name="downloadfile" unless="exist"
depends="setproxy,testexistdir">
+ <target name="downloadfile" unless="exist"
depends="setproxy,testexist">
<!-- Download extract the file -->
<mkdir dir="${destdir}" />
<get src="${sourcefile}" dest="${destfile}" />
Show replies by date