From 258cea78dec2ad791dfbc2166857417feefc9b35 Mon Sep 17 00:00:00 2001 From: Graham Barber Date: Thu, 20 Mar 2025 22:16:47 -0700 Subject: [PATCH] fix(install): correct typo in JS symlink --- cmd/install.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/install.ts b/cmd/install.ts index 32cd736..371ddbc 100644 --- a/cmd/install.ts +++ b/cmd/install.ts @@ -18,7 +18,7 @@ export async function installPlugin(args: InstallArgs, vault: string) { const manifestText = await Deno.readTextFile(manifestPath); const manifest = JSON.parse(manifestText); - const jsPath = resolve(cwd, "main.js;"); + const jsPath = resolve(cwd, "main.js"); const vaultPath = resolve(cwd, vault); const pluginPath = resolve( vaultPath,