Skip to content

Commit d95d5ff

Browse files
author
Tim Etchells
committed
Normalize paths to fix windows path issues
1 parent 3041e9a commit d95d5ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/src/microclimate/project/Project.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export default class Project implements ITreeItemAdaptable, vscode.QuickPickItem
7777
this.type = new ProjectType(projectInfo.buildType, projectInfo.language);
7878

7979
this.localPath = vscode.Uri.file(
80-
MCUtil.appendPathWithoutDupe(connection.workspacePath.fsPath, projectInfo.locOnDisk)
80+
MCUtil.appendPathWithoutDupe(connection.workspacePath.fsPath, vscode.Uri.file(projectInfo.locOnDisk).fsPath)
8181
);
8282

8383
this.contextRoot = projectInfo.contextroot || ""; // non-nls

0 commit comments

Comments
 (0)