Skip to content

Commit

Permalink
Function name consolidated.
Browse files Browse the repository at this point in the history
  • Loading branch information
szchenghuang committed Oct 14, 2024
1 parent 94dcc9d commit 20f8308
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli/src/oclif/ZapierBaseCommand.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const DATA_FORMATS = ['json', 'raw'];
class ZapierBaseCommand extends Command {
async run() {
this._initPromptModules();
await this._parseFlags();
await this._parseCommand();

if (this.flags.debug) {
this.debug.enabled = true; // enables this.debug on the command
Expand Down Expand Up @@ -65,7 +65,7 @@ class ZapierBaseCommand extends Command {
});
}

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

this.flags = flags;
Expand Down

0 comments on commit 20f8308

Please sign in to comment.