Skip to content

Commit 82bf395

Browse files
committed
fix: Update argument parsing to use process.argv instead of Bun.argv
1 parent a60f4c9 commit 82bf395

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export async function getOptions() {
3535
"A wrapper around GitHub Copilot API to make it OpenAI compatible, making it usable for other tools.",
3636
},
3737
})
38-
const options = parseArgs<typeof args>(Bun.argv, args)
38+
const options = parseArgs<typeof args>(process.argv, args)
3939

4040
if (options.help) {
4141
await showUsage(command)

0 commit comments

Comments
 (0)