Skip to content

Commit

Permalink
fix: Fixed code connect script
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecoomber committed Oct 18, 2024
1 parent cb7501d commit abe548d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/create_code_connect/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};
Expand Down

0 comments on commit abe548d

Please sign in to comment.