Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ahqsoftwares committed Sep 1, 2024
1 parent aa754d9 commit 37a9cd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Octokit } from "octokit";
import { join, dirname } from "path";
import { join } from "path";
import { readFileSync } from "fs";

const data = readFileSync(join(dirname, "tauri", "package.json")).toString();
const data = readFileSync(join("./", "tauri", "package.json")).toString();

const { version } = JSON.parse(data);

Expand Down

0 comments on commit 37a9cd7

Please sign in to comment.