Skip to content

Commit

Permalink
PLF-4450 : Remove verbose on delete (to not have a warning if the ext…
Browse files Browse the repository at this point in the history
…ension wasn't installed)
  • Loading branch information
aheritier committed Apr 11, 2013
1 parent 86a5a5b commit 3f2159d
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -144,8 +144,7 @@ def uninstallExtension(String extensionName) {
println "Uninstalling ${extensionName} extension ..."
extensionDirectory.eachFileRecurse(FileType.FILES) { file ->
ant.delete(
file: new File(catalinaHome, extensionDirectory.toURI().relativize(file.toURI()).getPath()),
verbose: true)
file: new File(catalinaHome, extensionDirectory.toURI().relativize(file.toURI()).getPath()))
}
println "Done."
}
Expand Down

0 comments on commit 3f2159d

Please sign in to comment.