Author: lewismc
Date: Sun Jul 29 13:01:46 2012
New Revision: 1366843
URL: http://svn.apache.org/viewvc?rev=1366843&view=rev
Log:
NUTCH-1376 Add description parameter to every ant task
Modified:
nutch/trunk/build.xml
Modified: nutch/trunk/build.xml
URL:
http://svn.apache.org/viewvc/nutch/trunk/build.xml?rev=1366843&r1=1366842&r2=1366843&view=diff
==============================================================================
--- nutch/trunk/build.xml (original)
+++ nutch/trunk/build.xml Sun Jul 29 13:01:46 2012
@@ -482,11 +482,11 @@
<!-- target: ivy-download ============================================ -->
<target name="ivy-download" description="--> download ivy">
<available file="${ivy.jar}" property="ivy.jar.found"/>
- <antcall target="-ivy-download-unchecked"/>
+ <antcall target="ivy-download-unchecked"/>
</target>
<!-- target: ivy-download-unchecked ================================== -->
- <target name="-ivy-download-unchecked" unless="ivy.jar.found"
description="--> fetch any ivy file">
+ <target name="ivy-download-unchecked" unless="ivy.jar.found"
description="--> fetch any ivy file">
<get src="${ivy.repo.url}" dest="${ivy.jar}" usetimestamp="true" />
</target>