This is an automated email from the ASF dual-hosted git repository.
sdedic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git
The following commit(s) were added to refs/heads/master by this push:
new 90fb2291ff Avoid double quoting extra path
new d2435d01e9 Merge pull request #6464 from
sdedic/vscode/extension-space-path
90fb2291ff is described below
commit 90fb2291ffff6fce08b09ee5bd6db4a0655a3754
Author: Svata Dedic <[email protected]>
AuthorDate: Mon Sep 18 14:43:18 2023 +0200
Avoid double quoting extra path
---
java/java.lsp.server/vscode/src/nbcode.ts | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/java/java.lsp.server/vscode/src/nbcode.ts
b/java/java.lsp.server/vscode/src/nbcode.ts
index 744f9c85c7..468cc7c446 100644
--- a/java/java.lsp.server/vscode/src/nbcode.ts
+++ b/java/java.lsp.server/vscode/src/nbcode.ts
@@ -69,7 +69,7 @@ export function launch(
if (info.verbose) {
ideArgs.push('-J-Dnetbeans.logger.console=true');
}
- ideArgs.push(`-J-Dnetbeans.extra.dirs="${clusterPath}"`)
+ ideArgs.push(`-J-Dnetbeans.extra.dirs=${clusterPath}`)
if (env['netbeans.extra.options']) {
ideArgs.push(env['netbeans.extra.options']);
}
@@ -79,6 +79,8 @@ export function launch(
ideArgs.push(...['-J-Xdebug', '-J-Dnetbeans.logger.console=true',
'-J-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=8000']);
}
+ console.log(`Launching NBLS with arguments: ` + ideArgs);
+
let process: ChildProcessByStdio<any, Readable, Readable> =
spawn(nbcodePath, ideArgs, {
cwd : userDir,
stdio : ["ignore", "pipe", "pipe"],
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists