From e9b3437775f15805be54def313cc1b982bf1d52b Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Sat, 15 Jun 2024 16:23:20 +0200 Subject: [PATCH] build: :bug: change local package fs name format --- scripts/add_package.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/add_package.ts b/scripts/add_package.ts index a136300..671f78f 100644 --- a/scripts/add_package.ts +++ b/scripts/add_package.ts @@ -15,7 +15,7 @@ const { name, tag } = match.groups const repoUrl = new URL(`${name.slice(1)}.git`, baseRepo) // Setup destination and remove old versions -const fsName = name.replace('/', '.') +const fsName = name.replace('/', '__') const packageBase = join(Deno.cwd(), 'packages') const destinationBase = join(packageBase, fsName) const destinationCurrent = `${destinationBase}@${tag}`