[java-identity-provider] branch main updated: IDP-2260 Update script can not find artifact to download
Rod Widdowson
rdw at steadingsoftware.com
Wed Mar 13 20:02:35 UTC 2024
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=563b7327665d09fcc71ae8ddf7628413f5615950
The following commit(s) were added to refs/heads/main by this push:
new 563b73276 IDP-2260 Update script can not find artifact to download
563b73276 is described below
commit 563b7327665d09fcc71ae8ddf7628413f5615950
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Wed Mar 13 20:01:11 2024 +0000
IDP-2260 Update script can not find artifact to download
https://shibboleth.atlassian.net/browse/IDP-2260
look for tag.gz, not .tgz
---
.../src/main/java/net/shibboleth/idp/installer/impl/UpdateIdPCLI.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/UpdateIdPCLI.java b/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/UpdateIdPCLI.java
index f656bc917..ccbf53417 100644
--- a/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/UpdateIdPCLI.java
+++ b/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/UpdateIdPCLI.java
@@ -236,7 +236,7 @@ public class UpdateIdPCLI extends AbstractIdPHomeAwareCommandLine<UpdateIdPArgum
getLogger().error("Could not get file name for idp update version {}", version);
return RC_IO;
}
- final String fileName = baseName + (SystemUtils.IS_OS_WINDOWS? ".zip" : ".tgz");
+ final String fileName = baseName + (SystemUtils.IS_OS_WINDOWS? ".zip" : ".tar.gz");
final URL baseUrl = info.getUpdateURL(version);
if (baseUrl == null) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list