We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17b51df commit 41ac4ebCopy full SHA for 41ac4eb
1 file changed
src/configurationProvider.ts
@@ -496,7 +496,7 @@ export class JavaDebugConfigurationProvider implements vscode.DebugConfiguration
496
exclude = path.join(folder?.uri.fsPath || "", exclude);
497
}
498
499
- if (exclude.endsWith("/")) {
+ if (exclude.endsWith(process.platform === 'win32' ? '\\' : '/')) {
500
exclude = exclude.substr(0, exclude.length - 1);
501
isDirect = true;
502
} else {
0 commit comments