Skip to content

Commit

Permalink
docs(README): Fix example RegExp
Browse files Browse the repository at this point in the history
  • Loading branch information
ihorskyi authored and mattallty committed Feb 27, 2017
1 parent bdf7290 commit 6b01db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ prog
// 'app' is required, 'env' is optional
.command('deploy', 'Deploy an application')
.argument('<app>', 'App to deploy', /^myapp|their-app$/)
.argument('[env]', 'Environment to deploy on', /^dev|staging|prod$/, 'local')
.argument('[env]', 'Environment to deploy on', /^dev|staging|production$/, 'local')
// you specify options using .option()
// if --tail is passed, its value is required
.option('--tail <lines>', 'Tail <lines> lines of logs after deploy', prog.INT)
Expand Down

0 comments on commit 6b01db5

Please sign in to comment.