stevel 2005/07/25 09:52:01
Modified: . build.xml
Log:
no, I need the parent dirs too
Revision Changes Path
1.475 +3 -3 ant/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/ant/build.xml,v
retrieving revision 1.474
retrieving revision 1.475
diff -u -r1.474 -r1.475
--- build.xml 25 Jul 2005 16:39:06 -0000 1.474
+++ build.xml 25 Jul 2005 16:52:01 -0000 1.475
@@ -941,7 +941,7 @@
<!-- Creates jar of test utility classes -->
<target name="test-jar"
depends="compile-tests"
- description="--> creates the Apache Ant Test Utilties jar">
+ description="--> creates the Apache Ant Test Utilities jar">
<fail unless="junit.present">
We cannot build the test jar unless JUnit is present,
@@ -1357,12 +1357,12 @@
keyfile="${ssh.keyfile}" passphrase="${ssh.passphrase}"
knownhosts="${ssh.knownhosts}"
failonerror="false"
- command="mkdir ${ssh.dist.directory}" />
+ command="mkdir -p ${ssh.dist.directory}" />
<sshexec username="${apache.user}" host="${ssh.host}"
keyfile="${ssh.keyfile}" passphrase="${ssh.passphrase}"
knownhosts="${ssh.knownhosts}"
failonerror="false"
- command="mkdir ${ssh.jars.directory}"/>
+ command="mkdir -p ${ssh.jars.directory}"/>
</target>
<target name="upload" description="--> uploads the distribution"
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]