Compare commits

...

2 Commits

2 changed files with 2 additions and 2 deletions

View File

@ -162,7 +162,7 @@ var NewAppServer string
var NewAppServerFlag = &cli.StringFlag{
Name: "server, s",
Value: "",
Usage: "Show apps of a specific server",
Usage: "Use a specific server",
Destination: &NewAppServer,
}

View File

@ -40,7 +40,7 @@ Here is a semver cheat sheet (more on https://semver.org):
var chosenBumpType string
prompt := &survey.Select{
Message: fmt.Sprintf("select recipe version increment type"),
Message: "select recipe version increment type",
Options: []string{"major", "minor", "patch"},
}