fix: show "local" instead of "default"

This commit is contained in:
2021-10-17 23:50:12 +02:00
parent 95e19f03c4
commit c1390f232e
2 changed files with 16 additions and 2 deletions

View File

@ -210,6 +210,10 @@ func action(c *cli.Context) error {
}
}
if newAppServer == "default" {
newAppServer = "local"
}
tableCol := []string{"Name", "Domain", "Type", "Server"}
table := abraFormatter.CreateTable(tableCol)
table.Append([]string{sanitisedAppName, domain, recipe.Name, newAppServer})