Skip to content

Commit

Permalink
argv parsed.
Browse files Browse the repository at this point in the history
  • Loading branch information
szchenghuang committed Oct 14, 2024
1 parent c52228c commit eb6cc3f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli/src/oclif/ZapierBaseCommand.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,11 @@ class ZapierBaseCommand extends Command {
}

async _parseFlags() {
const { flags, args } = await this.parse(this._staticClassReference);
const { flags, args, argv } = await this.parse(this._staticClassReference);

this.flags = flags;
this.args = args;
this.argv = argv;
}

perform() {
Expand Down

0 comments on commit eb6cc3f

Please sign in to comment.