Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cli: use kebab-case for --retry-tag-filter arg #1293

Merged
merged 14 commits into from
Mar 17, 2020
Prev Previous commit
Next Next commit
pass both stdout and stderr to console
davidjgoss committed Mar 7, 2020
commit 3dc5293442792a51df521668b8a1ce9bdbbfbf13
2 changes: 1 addition & 1 deletion src/cli/index.ts
Original file line number Diff line number Diff line change
@@ -49,7 +49,7 @@ export default class Cli {
this.argv = argv
this.cwd = cwd
this.stdout = stdout
this.console = new Console(stderr)
this.console = new Console({ stdout, stderr })
}

async getConfiguration(): Promise<IConfiguration> {