From a75b01e78a285341e04f4cd4d66d4eaad22e103a Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Thu, 23 Dec 2021 19:34:50 +0100 Subject: [PATCH] fix: use app name instead --- cli/internal/deploy.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/internal/deploy.go b/cli/internal/deploy.go index bf0b6cad..1acb93f6 100644 --- a/cli/internal/deploy.go +++ b/cli/internal/deploy.go @@ -139,7 +139,7 @@ func DeployAction(c *cli.Context) error { // DeployOverview shows a deployment overview func DeployOverview(app config.App, version, message string) error { - tableCol := []string{"server", "compose", "domain", "stack", "version"} + tableCol := []string{"server", "compose", "domain", "app name", "version"} table := abraFormatter.CreateTable(tableCol) deployConfig := "compose.yml" @@ -177,7 +177,7 @@ func DeployOverview(app config.App, version, message string) error { // NewVersionOverview shows an upgrade or downgrade overview func NewVersionOverview(app config.App, currentVersion, newVersion string) error { - tableCol := []string{"server", "compose", "domain", "stack", "current version", "to be deployed"} + tableCol := []string{"server", "compose", "domain", "app name", "current version", "to be deployed"} table := abraFormatter.CreateTable(tableCol) deployConfig := "compose.yml"