Browse Source

no, I need the parent dirs too

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278475 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 20 years ago
parent
commit
e99b743779
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      build.xml

+ 3
- 3
build.xml View File

@@ -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"


Loading…
Cancel
Save