Browse Source

log where ftp is going to

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@676591 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 17 years ago
parent
commit
c9913e80fa
2 changed files with 5 additions and 1 deletions
  1. +3
    -0
      WHATSNEW
  2. +2
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java

+ 3
- 0
WHATSNEW View File

@@ -159,6 +159,9 @@ Other changes:
csvColumnSeparator and csvQuoteCharacter.
Bugzilla report 35627.

* <ftp>'s logging has been improved.
Bugzilla report 30932.

Changes from Ant 1.7.0 TO Ant 1.7.1
=============================================



+ 2
- 1
src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java View File

@@ -2366,7 +2366,8 @@ public class FTP
}, "Site Command: " + this.siteCommand);
} else {
if (remotedir != null) {
log("changing the remote directory", Project.MSG_VERBOSE);
log("changing the remote directory to " + remotedir,
Project.MSG_VERBOSE);
ftp.changeWorkingDirectory(remotedir);
if (!FTPReply.isPositiveCompletion(ftp.getReplyCode())) {
throw new BuildException("could not change remote "


Loading…
Cancel
Save