Skip to content

Commit

Permalink
fix(cli): remove unused argument
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushmanchhabra committed Apr 27, 2024
1 parent 49f02e5 commit 043d81e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function cli() {
.parse(process.argv);

let options = program.opts();
options = await parse({...options, 'args': program.args.slice(1)});
options = await parse(options);

await run({
version: options.version,
Expand Down

0 comments on commit 043d81e

Please sign in to comment.