Skip to content

Commit

Permalink
IDE-5116 fix portal start error while system env is jdk17
Browse files Browse the repository at this point in the history
  • Loading branch information
simonjhy committed Dec 1, 2023
1 parent 9f06001 commit 64feb39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ public void setupLaunchConfiguration(ILaunchConfigurationWorkingCopy launch, IPr

if (Objects.nonNull(pathEnvironment)) {
try {
launchEnvrionment.put("PATH", jrePath.toOSString() + ":" + pathEnvironment);
launchEnvrionment.put("PATH", jrePath.toOSString() + "/bin:" + pathEnvironment);
}
catch (Exception exception) {
}
Expand Down

0 comments on commit 64feb39

Please sign in to comment.