[java-identity-provider] 47/51: IDP-2260 Update script can not find artifact to download

Rod Widdowson rdw at steadingsoftware.com
Sat Mar 16 14:29:19 UTC 2024


This is an automated email from the git hooks/post-receive script.

rdw pushed a commit to branch dev/IDP-2147
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=1169483f44a3a444ffb3c96e7658c0036869d224

commit 1169483f44a3a444ffb3c96e7658c0036869d224
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