Skip to content

Commit

Permalink
fix: show commands output
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Jun 3, 2024
1 parent ea86940 commit f46e6b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/cli/tarballs/smoke.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default class SmokeTest extends SfCommand<void> {
}

private async getAllCommands(executable: string): Promise<string[]> {
const commandsJson = JSON.parse(await this.execute(executable, 'commands --json', true)) as Array<{ id: string }>;
const commandsJson = JSON.parse(await this.execute(executable, 'commands --json', false)) as Array<{ id: string }>;
return commandsJson.map((c) => c.id);
}

Expand Down

0 comments on commit f46e6b6

Please sign in to comment.