refactor: better wording

This commit is contained in:
decentral1se 2021-12-19 23:14:29 +01:00
parent f5caf5587a
commit a750344653
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
2 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ A new catalogue copy can be published to the recipes repository by passing the
logrus.Debugf("ensuring '%v' recipe(s) are locally present and up-to-date", len(repos))
cloneLimiter := limit.New(10)
retrieveBar := formatter.CreateProgressbar(len(repos), "retrieving recipes...")
retrieveBar := formatter.CreateProgressbar(len(repos), "retrieving recipes from recipes.coopcloud.tech...")
ch := make(chan string, len(repos))
for _, repoMeta := range repos {
go func(rm catalogue.RepoMeta) {

View File

@ -350,7 +350,7 @@ func ReadReposMetadata() (RepoCatalogue, error) {
reposMeta := make(RepoCatalogue)
pageIdx := 1
bar := formatter.CreateProgressbar(-1, "querying git.coopcloud.tech recipe list...")
bar := formatter.CreateProgressbar(-1, "retrieving recipe repos list from git.coopcloud.tech...")
for {
var reposList []RepoMeta