Skip to content

Commit

Permalink
Change subprocess to exec in jdtls.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jreicher authored and rgrunber committed Apr 14, 2022
1 parent 8bbc576 commit 346d6fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions org.eclipse.jdt.ls.product/scripts/jdtls.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ def main(args):
shared_config_path = get_shared_config_path(jdtls_base_path)
jar_path = find_equinox_launcher(jdtls_base_path)

subprocess.run([java_executable,
"-Declipse.application=org.eclipse.jdt.ls.core.id1",
os.execvp(java_executable,
["-Declipse.application=org.eclipse.jdt.ls.core.id1",
"-Dosgi.bundles.defaultStartLevel=4",
"-Declipse.product=org.eclipse.jdt.ls.core.product",
"-Dosgi.checkConfiguration=true",
Expand Down

0 comments on commit 346d6fa

Please sign in to comment.