Skip to content

Commit

Permalink
fix: fix forwarding of args from node to minijson
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Sep 7, 2024
1 parent ca65e23 commit 2a1d078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node/cli.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { spawnMinijson } from "./lib"

async function main() {
await spawnMinijson(process.argv)
await spawnMinijson(process.argv.slice(2))
}

main().catch((e) => {
Expand Down

0 comments on commit 2a1d078

Please sign in to comment.