You are viewing a plain text version of this content. The canonical link for it is here.
Posted to easyant-commits@incubator.apache.org by hi...@apache.org on 2012/12/28 15:11:46 UTC

svn commit: r1426543 - /incubator/easyant/core/trunk/build.xml

Author: hibou
Date: Fri Dec 28 15:11:46 2012
New Revision: 1426543

URL: http://svn.apache.org/viewvc?rev=1426543&view=rev
Log:
fix ivy "cached" jar folder

Modified:
    incubator/easyant/core/trunk/build.xml

Modified: incubator/easyant/core/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/build.xml?rev=1426543&r1=1426542&r2=1426543&view=diff
==============================================================================
--- incubator/easyant/core/trunk/build.xml (original)
+++ incubator/easyant/core/trunk/build.xml Fri Dec 28 15:11:46 2012
@@ -21,7 +21,7 @@
         <mkdir dir="${bootstrap.dir}"/>
 
         <property name="ivy.version"  value="2.3.0-rc2"/>
-        <kdir dir="${user.home}/.ivy2/jars" />
+        <mkdir dir="${user.home}/.ivy2/jars" />
         <get src="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.version}/ivy-${ivy.version}.jar" dest="${user.home}/.ivy2/jars/ivy-${ivy.version}.jar" usetimestamp="true"/>
         <taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" classpath="${user.home}/.ivy2/jars/ivy-${ivy.version}.jar" />
     </target>