From 943e5227658244db6d71530310babee507c6bf12 Mon Sep 17 00:00:00 2001 From: Thomas Piccirello Date: Fri, 30 Oct 2020 11:06:48 -0700 Subject: [PATCH] Rename 'Stage' to 'Environment' This is a carry-over from our legacy terminology. --- pkg/printer/print.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/printer/print.go b/pkg/printer/print.go index c99bf46a..aab7dc85 100644 --- a/pkg/printer/print.go +++ b/pkg/printer/print.go @@ -179,7 +179,7 @@ func ConfigInfo(info models.ConfigInfo, jsonFlag bool) { } rows := [][]string{{info.Name, info.InitialFetchAt, info.LastFetchAt, info.CreatedAt, info.Environment, info.Project}} - Table([]string{"name", "initial fetch", "last fetch", "created at", "stage", "project"}, rows, TableOptions()) + Table([]string{"name", "initial fetch", "last fetch", "created at", "environment", "project"}, rows, TableOptions()) } // ConfigsInfo print configs @@ -194,7 +194,7 @@ func ConfigsInfo(info []models.ConfigInfo, jsonFlag bool) { rows = append(rows, []string{configInfo.Name, configInfo.InitialFetchAt, configInfo.LastFetchAt, configInfo.CreatedAt, configInfo.Environment, configInfo.Project}) } - Table([]string{"name", "initial fetch", "last fetch", "created at", "stage", "project"}, rows, TableOptions()) + Table([]string{"name", "initial fetch", "last fetch", "created at", "environment", "project"}, rows, TableOptions()) } // EnvironmentsInfo print environments