Skip to content

Commit

Permalink
fix workspace paths on windows (#1386)
Browse files Browse the repository at this point in the history
  • Loading branch information
yonip23 authored Nov 30, 2023
1 parent 99b25d2 commit 80aa684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WorkspaceUpdater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function updateWorkspace() {
}
return isFileUrl;
})
.map((wf) => wf.uri.path) || [];
.map((wf) => wf.uri.fsPath) || [];

Logger.debug(
`Updating root paths for project ${
Expand Down

0 comments on commit 80aa684

Please sign in to comment.