Skip to content

Commit

Permalink
fix typo in deploy example. Closes #718
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Oct 21, 2018
1 parent 390d163 commit 1495f50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/cli/deploy/deploy.go
Expand Up @@ -20,8 +20,8 @@ import (
func init() {
cmd := root.Command("deploy", "Deploy the project.").Default()
stage := cmd.Arg("stage", "Target stage name.").Default("staging").String()
cmd.Example(`up deploy`, "Deploy the project the staging environment.")
cmd.Example(`up deploy production`, "Deploy the project to the production environment.")
cmd.Example(`up deploy`, "Deploy to the staging environment.")
cmd.Example(`up deploy production`, "Deploy to the production environment.")

cmd.Action(func(_ *kingpin.ParseContext) error {
return deploy(*stage)
Expand Down

0 comments on commit 1495f50

Please sign in to comment.