Skip to content

Commit c3f94d5

Browse files
finally fix this :P
1 parent 7d91ace commit c3f94d5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/configurationProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ export class JavaDebugConfigurationProvider implements vscode.DebugConfiguration
471471
const paths: string[] = [];
472472
let replaced: boolean = false;
473473
for (const p of pathArray) {
474-
for (const splitPath of p.split(':')) {
474+
for (const splitPath of p.split(process.platform === 'win32' ? ';' : ':')) {
475475
if (pathVariables.includes(splitPath)) {
476476
if (!replaced) {
477477
paths.push(...resolvedPaths);

0 commit comments

Comments
 (0)