Skip to content

Commit

Permalink
Rename 'Stage' to 'Environment'
Browse files Browse the repository at this point in the history
This is a carry-over from our legacy terminology.
  • Loading branch information
Piccirello committed Oct 30, 2020
1 parent 5a3c72b commit 943e522
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/printer/print.go
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 943e522

Please sign in to comment.