use path.normalize for extpath.normalize(.., true)

This commit is contained in:
Martin Aeschlimann
2019-02-15 15:03:30 +01:00
parent ad209fbf7b
commit 92a61b8d16
18 changed files with 46 additions and 51 deletions

View File

@@ -354,7 +354,7 @@ export class ExtHostWorkspaceProvider {
if (includeWorkspace) {
result = `${folder.name}/${result}`;
}
return normalize(result, true);
return normalize(result);
}
private trySetWorkspaceFolders(folders: vscode.WorkspaceFolder[]): void {