Skip to content

Commit 74f56d3

Browse files
author
Loïc Mangeonjean
committed
fix: normalize paths
1 parent ebca896 commit 74f56d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/extension-tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ async function extractResourcesFromExtensionManifest(
304304
}
305305

306306
// remove duplicates
307-
return Array.from(new Set(resources))
307+
return Array.from(new Set(resources.map((p) => nodePath.normalize(p))))
308308
}
309309

310310
async function extractResources(

0 commit comments

Comments
 (0)