We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e09009b + c991d37 commit dfb7612Copy full SHA for dfb7612
vscode/src/nbcode.ts
@@ -105,13 +105,13 @@ export function launch(
105
}
106
107
if (info.projectSearchRoots) {
108
- ideArgs.push(`-J-Dproject.limitScanRoot="${info.projectSearchRoots}"`);
+ ideArgs.push(`-J-Dproject.limitScanRoot=${info.projectSearchRoots}`);
109
110
111
if (info.verbose) {
112
ideArgs.push('-J-Dnetbeans.logger.console=true');
113
114
- ideArgs.push(`-J-Dnetbeans.extra.dirs="${clusterPath}"`)
+ ideArgs.push(`-J-Dnetbeans.extra.dirs=${clusterPath}`)
115
if (env['netbeans.extra.options']) {
116
ideArgs.push(...env['netbeans.extra.options'].split(' '));
117
0 commit comments