Browse Source

log correct directory when failing to delete it

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@711180 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 16 years ago
parent
commit
789ca1c02e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/Delete.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/Delete.java View File

@@ -698,7 +698,7 @@ public class Delete extends MatchingTask {
}
log("Deleting directory " + d.getAbsolutePath(), verbosity);
if (!delete(d)) {
handle("Unable to delete directory " + dir.getAbsolutePath());
handle("Unable to delete directory " + d.getAbsolutePath());
}
}



Loading…
Cancel
Save