Skip to content

Commit 2a1d078

Browse files
committed
fix: fix forwarding of args from node to minijson
1 parent ca65e23 commit 2a1d078

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { spawnMinijson } from "./lib"
22

33
async function main() {
4-
await spawnMinijson(process.argv)
4+
await spawnMinijson(process.argv.slice(2))
55
}
66

77
main().catch((e) => {

0 commit comments

Comments
 (0)