Skip to content

Commit

Permalink
refactor: remove backticks from ddev mailpit in ddev describe info te…
Browse files Browse the repository at this point in the history
…xt, fixes ddev#6276 (ddev#6279) [skip ci]
  • Loading branch information
gitressa authored Jun 5, 2024
1 parent aeb4630 commit 0a8939c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/ddev/cmd/describe.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ func renderAppDescribe(app *ddevapp.DdevApp, desc map[string]interface{}) (strin
if _, ok := desc["mailpit_https_url"]; ok {
mailpitURL = desc["mailpit_https_url"].(string)
}
t.AppendRow(table.Row{"Mailpit", "", fmt.Sprintf("Mailpit: %s\n`ddev mailpit`", mailpitURL)})
t.AppendRow(table.Row{"Mailpit", "", fmt.Sprintf("Mailpit: %s\nLaunch: ddev mailpit", mailpitURL)})

//WebExtraExposedPorts stanza
for _, extraPort := range app.WebExtraExposedPorts {
Expand Down

0 comments on commit 0a8939c

Please sign in to comment.