We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 390d163 commit 1495f50Copy full SHA for 1495f50
internal/cli/deploy/deploy.go
@@ -20,8 +20,8 @@ import (
20
func init() {
21
cmd := root.Command("deploy", "Deploy the project.").Default()
22
stage := cmd.Arg("stage", "Target stage name.").Default("staging").String()
23
- cmd.Example(`up deploy`, "Deploy the project the staging environment.")
24
- 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.")
25
26
cmd.Action(func(_ *kingpin.ParseContext) error {
27
return deploy(*stage)
0 commit comments