Replies: 2 comments 3 replies
-
It may not be the same issue, but when I ran into a similar one and I ended up checking the files and there was an error in one of the functions attempting to figure out it's location.
def find_equinox_launcher(jdtls_base_directory):
plugins_dir = jdtls_base_directory / "plugins"
# Original line:
# launchers = plugins_dir.glob('org.eclipse.equinox.launcher_*.jar')
# Fixed line:
launchers = plugins_dir.glob('org.eclipse.equinox.launcher*.jar')
for launcher in launchers:
return str(plugins_dir / launcher) This modification fixed it for me as the new pattern was matching the equinox launchers. Though this seems to be unrelated to mason |
Beta Was this translation helpful? Give feedback.
3 replies
-
Also experiencing the same... but men this isnt working out for me.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
After I install a jdtls - there is a problem that it cannot find Equinox Launcher. How can I fix this?
Beta Was this translation helpful? Give feedback.
All reactions