In a target I download a remote file if it's newer than the current local one or if no local copy exists. I do it using the following code and it works as it's supposed to:
<target name="download-ivy" unless="skip.download"> <mkdir dir="${destination.dir}"/> <get src="http://a.com/b.jar" dest="${destination.file}" usetimestamp="true"/> </target> Now to my problem: I would like to do something if the remote file is actually downloaded. If the remote file is not downloaded I don't want to do these tasks. I've looked through the manual and done some Googling without finding my answer. I'm quite new to Ant so this may still be an easy problem for someone more experienced. Any and all help highly appreciated! Regards, Kent --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org