Skip to content
This repository has been archived by the owner on Jan 16, 2025. It is now read-only.

Commit

Permalink
fix: bin.path is not a function (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
Klaitos authored Feb 15, 2023
1 parent 4612319 commit d7dc671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/swcx/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const executeBinary = async () => {

await bin.run();

const binPath = bin.path();
const binPath = bin.path;

const [, , ...args] = process.argv;
const options = { cwd: process.cwd(), stdio: "inherit" as StdioOptions };
Expand Down

0 comments on commit d7dc671

Please sign in to comment.