We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1796c33 commit d0fbd4dCopy full SHA for d0fbd4d
packages/cli/src/cli/index.ts
@@ -41,7 +41,7 @@ const main = async () => {
41
});
42
await program.parseAsync([process.argv[0], process.argv[1], chosenCommand]);
43
} else {
44
- await program.parseAsync(process.argv);
+ await program.parseAsync([process.argv[0], process.argv[1], chosenCommand, ...process.argv.slice(3)]);
45
}
46
} catch (e) {
47
handleError(e);
0 commit comments