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.
1 parent c4da87f commit 493276cCopy full SHA for 493276c
extension/extension.ts
@@ -81,7 +81,9 @@ const configurationProvider: vscode.DebugConfigurationProvider = {
81
if (typeof nonString !== "undefined") {
82
return abortLaunch(`invalid value in scriptFiles: "${nonString}"`);
83
} else {
84
- const uris = await Promise.all(config.scriptFiles.map(p => vscode.workspace.findFiles(p)));
+ const uris = await Promise.all(
85
+ config.scriptFiles.map(p => vscode.workspace.findFiles(path.normalize(p)))
86
+ );
87
config.scriptFiles = uris.flatMap(u => u.map(uri => uri.fsPath));
88
}
89
0 commit comments