[java-identity-provider] branch main updated: Handle the possibility of file names having () in them. like C:\Program Files (x86) for instance
Rod Widdowson
rdw at steadingsoftware.com
Tue Nov 17 17:07:31 UTC 2020
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=5e6a597b58281e4965f1796dd180df37bffedc4e
The following commit(s) were added to refs/heads/main by this push:
new 5e6a597b5 Handle the possibility of file names having () in them. like C:\Program Files (x86) for instance
5e6a597b5 is described below
commit 5e6a597b58281e4965f1796dd180df37bffedc4e
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Tue Nov 17 17:07:25 2020 +0000
Handle the possibility of file names having () in them.
like C:\Program Files (x86) for instance
---
idp-distribution/src/main/resources/bin/runclass.bat | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/idp-distribution/src/main/resources/bin/runclass.bat b/idp-distribution/src/main/resources/bin/runclass.bat
index cc153179c..081995f75 100644
--- a/idp-distribution/src/main/resources/bin/runclass.bat
+++ b/idp-distribution/src/main/resources/bin/runclass.bat
@@ -21,11 +21,10 @@ if not exist %JAVACMD% (
exit /b
)
-if defined NO_PLUGIN_WEBAPP (
- set WEBAPPCP=%~dp0..\edit-webapp\WEB-INF\lib\*
-) else (
- set WEBAPPCP=%~dp0..\edit-webapp\WEB-INF\lib\*;%~dp0..\dist\plugin-webapp\WEB-INF\lib\*
-)
+set WEBAPPCP=%~dp0..\edit-webapp\WEB-INF\lib\*
+if defined NO_PLUGIN_WEBAPP goto no_plugin_webapp
+set WEBAPPCP=%~dp0..\edit-webapp\WEB-INF\lib\*;%~dp0..\dist\plugin-webapp\WEB-INF\lib\*
+:no_plugin_webapp
REM add in the dependency .jar files
set LOCALCLASSPATH=%~dp0lib\*;%WEBAPPCP%;%~dp0..\dist\webapp\WEB-INF\lib\*;%JAVA_HOME%\lib\classes.zip;%CLASSPATH%
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list