Skip to content

Commit dfb7612

Browse files
authored
Merge pull request #301 from sid-srini/jvsc300_remove_quoting_in_nbcode_launch_args
[JVSC-300] Remove quoting in nbcode launch arguments
2 parents e09009b + c991d37 commit dfb7612

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vscode/src/nbcode.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@ export function launch(
105105
}
106106

107107
if (info.projectSearchRoots) {
108-
ideArgs.push(`-J-Dproject.limitScanRoot="${info.projectSearchRoots}"`);
108+
ideArgs.push(`-J-Dproject.limitScanRoot=${info.projectSearchRoots}`);
109109
}
110110

111111
if (info.verbose) {
112112
ideArgs.push('-J-Dnetbeans.logger.console=true');
113113
}
114-
ideArgs.push(`-J-Dnetbeans.extra.dirs="${clusterPath}"`)
114+
ideArgs.push(`-J-Dnetbeans.extra.dirs=${clusterPath}`)
115115
if (env['netbeans.extra.options']) {
116116
ideArgs.push(...env['netbeans.extra.options'].split(' '));
117117
}

0 commit comments

Comments
 (0)