提交 7f365d2f 编写于 作者: A Alex Ross

Fix drive letter casing on typescript tasks

Occurs when opening by double clicking on workspace file. Fixes #75084
上级 d978e48b
...@@ -234,7 +234,7 @@ class TscTaskProvider implements vscode.TaskProvider { ...@@ -234,7 +234,7 @@ class TscTaskProvider implements vscode.TaskProvider {
private getLabelForTasks(project: TSConfig): string { private getLabelForTasks(project: TSConfig): string {
if (project.workspaceFolder) { if (project.workspaceFolder) {
return path.posix.relative(project.workspaceFolder.uri.path, project.posixPath); return path.posix.relative(path.posix.normalize(project.workspaceFolder.uri.path), path.posix.normalize(project.posixPath));
} }
return project.posixPath; return project.posixPath;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册