[java-idp-integration-tests] 02/05: Fix script to install IdP for troubleshooting tests

Codeberg noreply at shibboleth.net
Fri Nov 14 22:15:21 UTC 2025


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

codeberg pushed a commit to branch main
in repository java-idp-integration-tests.

View the commit online:
https://codeberg.org/Shibboleth/java-idp-integration-tests/commit/33925d7fa91484980685f450c233be9b7491bea6

commit 33925d7fa91484980685f450c233be9b7491bea6
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Mon Nov 10 15:40:47 2025 -0600

    Fix script to install IdP for troubleshooting tests
---
 src/test/java/net/shibboleth/idp/integration/tests/BaseTest.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/test/java/net/shibboleth/idp/integration/tests/BaseTest.java b/src/test/java/net/shibboleth/idp/integration/tests/BaseTest.java
index 35267c2..c9d8a43 100644
--- a/src/test/java/net/shibboleth/idp/integration/tests/BaseTest.java
+++ b/src/test/java/net/shibboleth/idp/integration/tests/BaseTest.java
@@ -2729,8 +2729,7 @@ public abstract class BaseTest {
         if (!isWindows()) {
             final File fileToInstallIdP = pathToPerTestDirectory.resolve("install-idp.sh").toFile();
             log.debug("Writing command to install the IdP to '{}'", fileToInstallIdP);
-            final String commandToInstallIdP = "(\nset -x\n" + pathToIdPDist.toAbsolutePath() + "/"
-                    + String.join(" \\\n", installerCommands) + "\n)";
+            final String commandToInstallIdP = "(\nset -x\n" + String.join(" \\\n", installerCommands) + "\n)";
             Files.write(fileToInstallIdP.toPath(), commandToInstallIdP.getBytes());
             fileToInstallIdP.setExecutable(true);
         }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list