fix(install): correct typo in JS symlink

This commit is contained in:
Graham 2025-03-20 22:16:47 -07:00
parent 15640ae084
commit 258cea78de
Signed by: puregarlic
SSH key fingerprint: SHA256:j2sN/ABe7mfw8RwswfUi4owiaZYA2sTKCSkKlqYb35M

View file

@ -18,7 +18,7 @@ export async function installPlugin(args: InstallArgs, vault: string) {
const manifestText = await Deno.readTextFile(manifestPath); const manifestText = await Deno.readTextFile(manifestPath);
const manifest = JSON.parse(manifestText); const manifest = JSON.parse(manifestText);
const jsPath = resolve(cwd, "main.js;"); const jsPath = resolve(cwd, "main.js");
const vaultPath = resolve(cwd, vault); const vaultPath = resolve(cwd, vault);
const pluginPath = resolve( const pluginPath = resolve(
vaultPath, vaultPath,