This is an automated email from the ASF dual-hosted git repository.
thurka 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 776081037c shell env. variable cannot contain '.'
new bbef9ab52e Merge pull request #6102 from thurka/GCN-2763
776081037c is described below
commit 776081037c6532976bed5cd2c898b9d5c8082168
Author: Tomas Hurka <[email protected]>
AuthorDate: Tue Jun 20 15:02:32 2023 +0200
shell env. variable cannot contain '.'
---
java/java.lsp.server/vscode/src/nbcode.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/java/java.lsp.server/vscode/src/nbcode.ts
b/java/java.lsp.server/vscode/src/nbcode.ts
index 6df035717f..744f9c85c7 100644
--- a/java/java.lsp.server/vscode/src/nbcode.ts
+++ b/java/java.lsp.server/vscode/src/nbcode.ts
@@ -75,7 +75,7 @@ export function launch(
}
ideArgs.push(...extraArgs);
- if (env['netbeans.debug'] && extraArgs && extraArgs.find(s =>
s.includes("--list"))) {
+ if (env['netbeans_debug'] && extraArgs && extraArgs.find(s =>
s.includes("--list"))) {
ideArgs.push(...['-J-Xdebug', '-J-Dnetbeans.logger.console=true',
'-J-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=8000']);
}
---------------------------------------------------------------------
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