Skip to content

Commit

Permalink
fix: --verbose option not working for run-ios (#1946)
Browse files Browse the repository at this point in the history
  • Loading branch information
szymonrybczak committed Jun 2, 2023
1 parent cc32855 commit 4356f57
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ const pkgJson = require('../package.json');
const program = new CommanderCommand()
.usage('[command] [options]')
.version(pkgJson.version, '-v', 'Output the current version')
.option('--verbose', 'Increase logging verbosity');
.option('--verbose', 'Increase logging verbosity')
.enablePositionalOptions();

const handleError = (err: Error) => {
logger.enable();
Expand Down

0 comments on commit 4356f57

Please sign in to comment.