You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by jl...@apache.org on 2015/02/06 20:18:09 UTC

ant-easyant-plugins git commit: Create directory if necessary when using build script

Repository: ant-easyant-plugins
Updated Branches:
  refs/heads/master 6e25d1d8e -> e5d76bcba


Create directory if necessary when using build script


Project: http://git-wip-us.apache.org/repos/asf/ant-easyant-plugins/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant-easyant-plugins/commit/e5d76bcb
Tree: http://git-wip-us.apache.org/repos/asf/ant-easyant-plugins/tree/e5d76bcb
Diff: http://git-wip-us.apache.org/repos/asf/ant-easyant-plugins/diff/e5d76bcb

Branch: refs/heads/master
Commit: e5d76bcba9f4a2743d408a68d87bb4189e886d03
Parents: 6e25d1d
Author: Jean-Louis Boudart <je...@gmail.com>
Authored: Fri Feb 6 20:18:04 2015 +0100
Committer: Jean-Louis Boudart <je...@gmail.com>
Committed: Fri Feb 6 20:18:04 2015 +0100

----------------------------------------------------------------------
 build.xml | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant-easyant-plugins/blob/e5d76bcb/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index bb27632..124ee77 100644
--- a/build.xml
+++ b/build.xml
@@ -26,6 +26,7 @@
         <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" />
 
+        <mkdir dir="${user.home}/.ant/jars/"/>
         <get src="http://repo1.maven.org/maven2/ant-contrib/ant-contrib/1.0b3/ant-contrib-1.0b3.jar" dest="${user.home}/.ant/jars/ant-contrib-1.0b3.jar" usetimestamp="true" />
         <taskdef resource="net/sf/antcontrib/antcontrib.properties" uri="antlib:net.sf.antcontrib" classpath="${user.home}/.ant/jars/ant-contrib-1.0b3.jar" />
     </target>