Skip to content

Commit 0cbee23

Browse files
committed
fix: empty deno tasks on windows
1 parent e9f4110 commit 0cbee23

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

client/src/tasks_sidebar.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,9 @@ class DenoTaskProvider implements TaskProvider {
140140
);
141141
workspaceFolders.reverse();
142142
const workspaceFolder = workspaceFolders.find((f) =>
143-
// NOTE: skipEncoding in Uri.toString(), read more at https://github.com/microsoft/vscode/commit/65cb3397673b922c1b6759d145a3a183feb3ee5d
144-
// See https://github.com/denoland/vscode_deno/issues/991#issuecomment-1825340906.
145143
configTask.sourceUri
146144
.toLocaleLowerCase()
147-
.startsWith(f.uri.toString(true).toLocaleLowerCase())
145+
.startsWith(f.uri.toString().toLocaleLowerCase())
148146
);
149147
if (!workspaceFolder) {
150148
continue;

0 commit comments

Comments
 (0)