[java-identity-provider] 01/02: work around ant bug
Rod Widdowson
rdw at steadingsoftware.com
Sun Oct 27 10:48:27 EDT 2019
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch master
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=d0b32501a16a4c552a9290d6d5cbaad0ed153380
commit d0b32501a16a4c552a9290d6d5cbaad0ed153380
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Sun Oct 27 14:43:25 2019 +0000
work around ant bug
---
.../src/main/java/net/shibboleth/idp/installer/InstallerSupport.java | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/idp-installer/src/main/java/net/shibboleth/idp/installer/InstallerSupport.java b/idp-installer/src/main/java/net/shibboleth/idp/installer/InstallerSupport.java
index 6b04a4f..258c889 100644
--- a/idp-installer/src/main/java/net/shibboleth/idp/installer/InstallerSupport.java
+++ b/idp-installer/src/main/java/net/shibboleth/idp/installer/InstallerSupport.java
@@ -263,9 +263,12 @@ public final class InstallerSupport {
}
log.debug("Deleting tree {}", where);
final Delete delete = new Delete();
+ delete.setProject(ANT_PROJECT);
delete.setDir(where.toFile());
delete.setFailOnError(false);
- delete.setVerbose(log.isDebugEnabled());
+ // Logic for setVerbose is inverted
+ // https://bz.apache.org/bugzilla/show_bug.cgi?id=63887
+ delete.setVerbose(!log.isDebugEnabled());
delete.execute();
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list