From a0b211b0c51e611d82d0247dce5d3e1b6b45e32e Mon Sep 17 00:00:00 2001 From: Huakun Shen Date: Mon, 3 Mar 2025 02:03:51 -0500 Subject: [PATCH] fix(api): update matchPathAndScope Translate windows style back slash to posix style slash in order for minimatch to work. https://www.npmjs.com/package/minimatch#windows --- packages/api/src/utils/path.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/packages/api/src/utils/path.ts b/packages/api/src/utils/path.ts index f77bfc9..c08f863 100644 --- a/packages/api/src/utils/path.ts +++ b/packages/api/src/utils/path.ts @@ -1,6 +1,7 @@ import * as pathAPI from "@tauri-apps/api/path" import { BaseDirectory } from "@tauri-apps/api/path" import { exists, mkdir } from "@tauri-apps/plugin-fs" +import { platform } from "@tauri-apps/plugin-os" import { minimatch } from "minimatch" import type { FsPermissionScoped, @@ -92,8 +93,12 @@ export async function matchPathAndScope( scope: string, extensionDir: string ): Promise { - const translatedTarget = await translateScopeToPath(target, extensionDir) - const translatedScope = await translateScopeToPath(scope, extensionDir) + let translatedTarget = await translateScopeToPath(target, extensionDir) + let translatedScope = await translateScopeToPath(scope, extensionDir) + if (platform() === "windows") { + translatedTarget = translatedTarget.replaceAll("\\", "/") + translatedScope = translatedScope.replaceAll("\\", "/") + } return minimatch(translatedTarget, translatedScope) }