Skip to content

Commit 487384b

Browse files
committed
Pass launcher path to debug configs
1 parent 41b346f commit 487384b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/jkiss/tools/rcplaunchconfig/producers/iml/IMLConfigurationProducer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ private void buildProgramParameters(StringBuilder config, Path productPath, Resu
243243
config.append(getFormattedRelativePath(productPath, false, true, true)).append("" ");
244244
config.append("-dev "");
245245
config.append(getFormattedRelativePath(productPath, false, true, true)).append("/dev.properties").append("" ");
246-
config.append("-nl en -consoleLog -showsplash ");
246+
config.append("-nl en -consoleLog -showsplash -launcher ").append(System.getenv("JAVA_HOME")).append("/bin/java\n");
247247
if (result.getArguments().getProgramARGS() != null) {
248248
for (String programARG : result.getArguments().getProgramARGS()) {
249249
config.append(programARG).append(" ");

0 commit comments

Comments
 (0)