From abe548dc2e8bab0b31dabeac2973a52ac01c61c4 Mon Sep 17 00:00:00 2001 From: mikecoomber Date: Fri, 18 Oct 2024 14:13:31 +0100 Subject: [PATCH] fix: Fixed code connect script --- .github/create_code_connect/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/create_code_connect/index.js b/.github/create_code_connect/index.js index 3c1c1954..0309cf17 100644 --- a/.github/create_code_connect/index.js +++ b/.github/create_code_connect/index.js @@ -2,8 +2,8 @@ import { readFileSync } from "fs"; import { generateCodeConnectFile } from "../../dist/scripts/code-connect/generate-code-connect-file.js"; const main = async () => { - const iconManifest = new Map(Object.entries(JSON.parse(readFileSync("../../outputs/icon-manifest.json")))); - const dir = "../../outputs"; + const iconManifest = new Map(Object.entries(JSON.parse(readFileSync("outputs/icon-manifest.json")))); + const dir = "outputs"; generateCodeConnectFile(dir, iconManifest); };