summaryrefslogtreecommitdiffstats
path: root/cmd/ship/list.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/ship/list.go')
-rw-r--r--cmd/ship/list.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/ship/list.go b/cmd/ship/list.go
index 404ca68..a10b2ca 100644
--- a/cmd/ship/list.go
+++ b/cmd/ship/list.go
@@ -40,7 +40,7 @@ func runList(cmd *cobra.Command, args []string) error {
40 fmt.Fprintln(w, "NAME\tTYPE\tDOMAIN\tPORT") 40 fmt.Fprintln(w, "NAME\tTYPE\tDOMAIN\tPORT")
41 for name, app := range apps { 41 for name, app := range apps {
42 port := "" 42 port := ""
43 if app.Type == "app" { 43 if app.Type == "app" || app.Type == "git-app" {
44 port = fmt.Sprintf(":%d", app.Port) 44 port = fmt.Sprintf(":%d", app.Port)
45 } 45 }
46 domain := app.Domain 46 domain := app.Domain