Skip to content
Snippets Groups Projects
Commit 3381c271 authored by tranoris's avatar tranoris
Browse files

fix for #16

parent baff373d
No related branches found
No related tags found
1 merge request!12Merging 2024Q2_RC into main, creating 2024Q2 Release
Pipeline #4425 passed
...@@ -166,7 +166,7 @@ public class LCMRulesExecutor { ...@@ -166,7 +166,7 @@ public class LCMRulesExecutor {
ApplicationHome home = new ApplicationHome(LCMRulesExecutor.class); ApplicationHome home = new ApplicationHome(LCMRulesExecutor.class);
File classesJar = home.getSource(); File classesJar = home.getSource();
if ( classesJar.exists() ) { if ( classesJar.exists() ) {
optionList.addAll(Arrays.asList("-classpath", classesJar.getAbsoluteFile().toString() )); optionList.addAll(Arrays.asList("-classpath", classesJar.getAbsoluteFile().toString().replace("-exec", "") ));
} }
logger.debug("classesJar = "+ classesJar); logger.debug("classesJar = "+ classesJar);
logger.debug("optionList = "+ optionList.toString()); logger.debug("optionList = "+ optionList.toString());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment